-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (92 loc) · 3.22 KB
/
index.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
<!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">
<meta name="description" content="MyDiary is an online journal where users can record their thoughts and feelings">
<meta name="author" content="Olusola Oguntimehin">
<title>Home | MyDiary</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<link rel="icon" type="image/png" href="./img/favicon.png" sizes="32x32" />
</head>
<body>
<div class="page page--is-flex page--stretches">
<header class="header">
<div class="container">
<div class="header__brand">
<a class="link" href="./index.html">
MyDiary
</a>
</div>
<nav class="nav">
<a href="#" class="nav__open-menu js-open-menu"></a>
<ul class="list nav__list js-nav-list">
<li class="list__item">
<a href="#" class="nav__close-menu js-close-menu"></a>
</li>
<li class="list__item">
<a href="./login.html" class="link nav__link">
Login
</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="hero hero--home">
<div class="container">
<h1 class="hero__title">Capture every moment.</h1>
<p class="hero__text">
Stories from your life all in one place
</p>
<div>
<a href="./signup.html" class="button button--success">
Get Started
</a>
</div>
</div>
</section>
<section>
<h1 class="feature-list__title">
Features
</h1>
<div class="container">
<div class="feature-list">
<div class="feature-list__item">
<img src="./img/remind-icon.svg" alt="remind-icon" class="item__image">
<h2 class="item__title"> Reminders </h2>
<p class="item__desc">
Choose a time and we'll send you daily reminders to write in your diary.
</p>
</div>
<div class="feature-list__item">
<img src="./img/lock-icon.svg" alt="hashtag-icon" class="item__image">
<h2 class="item__title"> Privacy </h2>
<p class="item__desc">
Your stories are yours and yours alone. We'll never share your data.
</p>
</div>
<div class="feature-list__item">
<img src="./img/heart-solid.svg" alt="fav-icon" class="item__image">
<h2 class="item__title"> Favorites </h2>
<p class="item__desc">
Easily find your favorite memories and be happy again
</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<h4> Built with ❤ by
<a class="link" href="https://twitter.com/olusola_dev">Olusola</a>
</h4>
</div>
</footer>
</div>
<script type="text/javascript" src="./js/main.js"></script>
</body>
</html>