forked from Amanyara21/playlistlength.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotes.html
108 lines (104 loc) · 4.74 KB
/
Notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Note Taking App</title>
<meta name="description" content="Notes is a tool which allows you to make Notes and and save it into the website for future.">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="css/header&share.css">
<link rel="stylesheet" href="css/Notes.css">
<link rel="stylesheet" href="css/timetable.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<style>
table{
width: 100% !important;
border-collapse:collapse !important;
}
td, th{
border: 2px solid #cccccc !important;
padding: 10px 20px !important;
width: 1 !important;
text-align: center !important;
}
th{
font-family: Arial, Helvetica, sans-serif !important;
}
</style>
</head>
<body>
<header class=".bg-dark" style="background-color: black; ">
<div class="heading container .bg-dark">
<div class="logo">
<h1>Notes</h1>
</div>
<div class="linking">
<ul>
<li class="nav-linker"><a class="hyperlinks" href="#">Home</a></li>
<li class="nav-linker"><a class="hyperlinks" href="index.html">YTPlaylist Length</a></li>
<li class="nav-linker"><a class="hyperlinks" href="table.html">Time Table</a></li>
<li class="nav-linker"><a class="hyperlinks" href="https://amankumar21.netlify.app/">About Me</a></li>
</ul>
</div>
<div class="menu-lines">
<i id="menu" style=" font-size: 25px;"class="fa fa-bars" ></i>
</div>
</div>
</header>
<section class="container d-flex justify-content-end align-items-center">
<div id ="addnotes"class="addnotes d-inline ">
<i class="fa fa-plus-circle" style="font-size:35px; color: green;"></i>
<div class="add d-inline" style="font-size:35px; color: green;"> Add to Notes</div>
</div>
</section>
<section class="makeNotes">
<div class="cont1" style="z-index: 2;">
<h3>Add Note</h3>
<p>Give a Title to this Note</p>
<input style="width: 100%; padding: 0 5px; margin: 10px 0; border-radius: 5px;" id="headNote" type="text">
<p>Write A Note</p>
<textarea style="width: 100%; padding: 0 5px; margin: 10px 0; border-radius: 5px; height: 66px;" id="contentNode" ></textarea>
<div class="buttons">
<button id="cancel">Cancel</button>
<button id="Add">Add</button>
</div>
</div>
</section>
<section>
<div id="presentNotes"class="Addgap container d-flex flex-wrap align-items-center justify-content-center mt-3">
</div>
</section>
<section class="NotVisible container">
<div id="previewNotes"style="z-index: 2;" class="container mt-3">
</div>
</section>
<section class="contact">
<div class="contact-btn">
<a href="https://www.linkedin.com/in/aman-kumar-Aman2104/">
<i class="fa fa-linkedin"></i>
</a>
<a href="https://twitter.com/Amanyara21">
<i class="fa fa-twitter"></i>
</a>
<a href="https://github.com/Aman2104">
<i class="fa fa-github"></i>
</a>
<a href="mailto:[email protected]">
<i class="fa fa-envelope"></i>
</a>
<div>
<i class="fa fa-share-alt"></i>
</div>
</div>
</section>
<hr style="opacity: 0.2;">
<footer style="height: 100px;">
<p class="text-center">Made by <span class="name" style="color: blue;"><a style=" text-decoration: none;"href="https://www.linkedin.com/in/aman-kumar-Aman2104/"> Aman Kumar</a></span></p>
</footer>
<script src="javascript/Notes.js"></script>
<script src="javascript/share.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
</body>
</html>