-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
93 lines (60 loc) · 3.09 KB
/
test.html
File metadata and controls
93 lines (60 loc) · 3.09 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Notes app</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="images/icons/notes.png" />
<!-- <link rel="stylesheet" href="reset.css" /> -->
<link rel="stylesheet" href="landing.css" />
<script src="test.js"></script>
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.4.3/dist/css/foundation.min.css" integrity="sha256-GSio8qamaXapM8Fq9JYdGNTvk/dgs+cMLgPeevOYEx0= sha384-wAweiGTn38CY2DSwAaEffed6iMeflc0FMiuptanbN4J+ib+342gKGpvYRWubPd/+ sha512-QHEb6jOC8SaGTmYmGU19u2FhIfeG+t/hSacIWPpDzOp5yygnthL3JwnilM7LM1dOAbJv62R+/FICfsrKUqv4Gg==" crossorigin="anonymous"> -->
</head>
<body>
<div id="navbar">
<nav id="top-menu" class="menu">
<ul class="parent-menu" id="parent-menu-id">
<li class="upper-menu menu-icon" id="icon_item"><img src="images/icons/notes.png" style="width:40px;" alt="Notes app logo"/></li>
<li class="upper-menu menu-text"><a id="home" href="javascript:void(0)">Notes</a></li>
<li class="upper-menu menu-text"><a id="home_about" href="javascript:void(0)">About</a></li>
<li class="upper-menu menu-text"><a id="home_features" href="javascript:void(0)">Features</a></li>
<li class="upper-menu menu-text"><a id="community_nav" href="javascript:void(0)">Community</a></li>
<li class="upper-menu menu-text"><a id="download_nav" href="javascript:void(0)">Download</a></li>
<!-- <li class="upper-menu menu-text"><a href="editor/editor.html">Online Editor</a></li> -->
</ul>
</nav>
</div>
<div id="page_content">
<div id="content_placeholder"></div>
<div id="community_placeholder"></div>
<div id="download_placeholder"></div>
<section>
<form id="form" autocomplete="off" action="http://naivist.net/form" method="post">
<div id="error"></div>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name" required />
<label for="mail">E-mail:</label>
<input type="email" id="mail" name="user_email" required />
<label for="msg">Message:</label>
<textarea style="resize: none;" id="msg" name="user_message" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
<hr>
<section>
<footer class="text-center">
<ul>
<li><a id="pp" href="javascript:void(0)">Privacy Policy</a></li>
<li><a id="legal" href="javascript:void(0)">Legal</a></li>
<li><a id="about" href="javascript:void(0)">About Us</a></li>
</ul>
<br>
<p>All trademarks belong to their respective owners.</p>
<p>Google Play and the Google Play logo are trademarks of Google LLC.</p>
<p>Copyright (c) 2020 CherryDev. All Rights Reserved.</p>
</footer>
</section>
</div>
</body>
</html>