-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (82 loc) · 3.59 KB
/
index.html
File metadata and controls
90 lines (82 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/index.css">
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/d99caacb1c.js" crossorigin="anonymous"></script>
<title>Minimalist HomePage</title>
</head>
<body>
<nav>
<a class="nav-links" href="index.html">Home</a>
<a class="nav-links" href="about.html">About</a>
<a class="nav-links" href="#features">Features</a>
</nav>
<header>
<div class="tagline">
<h1 class="title">
Minimalist Homepage
</h1>
<p>You have a busy life. Keep everything you need in one customizable, modern and minimalist homepage.</p>
</div>
<form class="buttons" method="post">
<button formaction="https://minimalist-homepage.netlify.com/" class="signup">Sign Up <span><i
class="fas fa-user-plus"></i></span></button>
<button formaction="https://minimalist-homepage.netlify.com/" class="login">Login <span><i
class="fas fa-sign-in-alt"></i></span> </button>
</form>
</header>
<section class="main">
<div class="content">
<div class="features1">
<img src="images/features/undraw_Search_1px8.svg"
alt="A stylized vector image depicting a search page.">
<div class="desc">
<h1>Google Search</h1>
<p>A customizable replacement for
your browser's home page, with an integrated Google search right where you need it. </p>
</div>
</div>
<div class="features2">
<img src="images/features/undraw_ideas_flow_cy7b.svg"
alt="A stylized vector of a girl holding notes strung together.">
<div class="desc">
<h1>Links and Notes</h1>
<p>Keep track of your favorite things on the web, at a glance. Add your own custom links to your
favorite news sites, like Google News. Additionally, write notes to yourself with our handy note
creator.
</p>
</div>
</div>
<div class="features3">
<img src="images/features/undraw_personal_settings_kihd.svg"
alt="A stylized vector image of a girl shifting components of a giant settings board.">
<div class="desc">
<h1>Color Themes</h1>
<p>Choose from different hand-made color themes to suit your style. We understand how awful
eye strain can be. That's why we implemented dark mode, to keep your eyes comfortable in any
light
level.</p>
</div>
</div>
</div>
</section>
<section>
<footer>
<div class="footer-nav">
<a class="nav-links" href="index.html">Home</a>
<a class="nav-links" href="about.html">About</a>
<a class="nav-links" href="#features">Features</a>
</div>
<div class="copyright">
<small>
<p> © Minimalist HomePage</p>
</small>
</div>
</footer>
</section>
</body>
</html>