-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
43 lines (30 loc) · 1.01 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<title>ThoughtNest</title>
<meta charset="UTF-8">
<link rel="icon" href="images/ico.png"/>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div id="nav">
<a href="home.html" target="_self">Home</a>
<a href="about.html" target="_self">About</a>
</div>
<div id="logo" align="center">
<img src="images/tutnisLogo.png" alt="Logo" width="250">
</div>
<div align="center" id="content">
<h1>ThoughtNest</h1>
<p>A digital notebook</p>
<ul>
<li>Your secrets are safe here.</li>
<li>User-friendly</li>
<li>Available on mobile and desktop</li>
</ul>
<input class="buttons" type="button" value="Download"/><br/>
<br/>
<input class="texts" type="text" placeholder="Enter a feedback..."/>
</div>
</body>
</html>