diff --git a/learn editor file.pdf b/learn editor file.pdf new file mode 100644 index 0000000..dc530b3 Binary files /dev/null and b/learn editor file.pdf differ diff --git a/learning path.HTML b/learning path.HTML new file mode 100644 index 0000000..bf6655c --- /dev/null +++ b/learning path.HTML @@ -0,0 +1,82 @@ + + + + + + Create an HTML button that + acts like a link + + <link rel="stylesheet" href="https://use.fontawesome.com/releases/Version5.13.0/css/all.css" > + + + + + + + +

Choose Learning Path

+
+ +
+ + +
+
+ + +
+ + + +
+ + \ No newline at end of file diff --git a/not.html b/not.html new file mode 100644 index 0000000..8d16e22 --- /dev/null +++ b/not.html @@ -0,0 +1,124 @@ + + + + +Create Top Notification Bar on your Website Using HtMl And Css BY lisenme + + + + + + +
+
+
+
+

Subscribe to build skills

+
+
+ +
+

Subscribe Now

+
+
+
+
+ +
+ + diff --git a/notification bar b/notification bar new file mode 100644 index 0000000..d0c6648 --- /dev/null +++ b/notification bar @@ -0,0 +1,124 @@ + + + + +Create Top Notification Bar on your Website Using HtMl And Css BY lisenme + + + + + + +
+
+
+
+

Subscribe to build skills

+
+
+ +
+

Subscribe Now

+
+
+
+
+ +
+ + diff --git a/notification bar adding file b/notification bar adding file new file mode 100644 index 0000000..d0c6648 --- /dev/null +++ b/notification bar adding file @@ -0,0 +1,124 @@ + + + + +Create Top Notification Bar on your Website Using HtMl And Css BY lisenme + + + + + + +
+
+
+
+

Subscribe to build skills

+
+
+ +
+

Subscribe Now

+
+
+
+
+ +
+ + diff --git a/notification_react.js b/notification_react.js new file mode 100644 index 0000000..fc4a1a2 --- /dev/null +++ b/notification_react.js @@ -0,0 +1,50 @@ +import React from 'react'; +import {NotificationContainer, NotificationManager} from 'react-notifications'; + +class Example extends React.Component { + createNotification = (type) => { + return () => { + switch (type) { + case 'info': + NotificationManager.info('Info message'); + break; + case 'success': + NotificationManager.success('Success message', 'Title here'); + break; + case 'warning': + NotificationManager.warning('Warning message', 'Close after 3000ms', 3000); + break; + case 'error': + NotificationManager.error('Error message', 'Click me!', 5000, () => { + alert('callback'); + }); + break; + } + }; + }; + + render() { + return ( +
+ +
+ +
+ +
+ + + +
+ ); + } +} +