-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (107 loc) · 5.51 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<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>RememberThat</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="navbar">
<div class="container">
<a class="logo" href="#">Remember<span>That</span></a>
<img id="mobile-cta" class="mobile-menu" src="images/menu.svg" alt="Open Navigation">
<nav>
<img id="mobile-exit" class="mobile-menu-exit" src="images/exit.svg" alt="Exit Navigation">
<ul class="primary-nav">
<li class="current"><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Pricing</a></li>
</ul>
<ul class="secondary-nav">
<li><a href="#">Contact</a></li>
<li class="go-premium-cta"><a href="#">Go Premium</a></li>
</ul>
</nav>
</div>
</div>
<section class="hero">
<div class="container">
<div class="left-col">
<p class="subhead">It's Nitty & Gritty</p>
<h1>A Task App That Doesn't Stink</h1>
<div class="hero-cta">
<a href="#" class="primary-cta">Try for free</a>
<a href="#" class="watch-video-cta">
<img src="images/watch.svg" alt="Watch a video">Watch a video
</a>
</div>
</div>
<img class="hero-img" src="images/illustration.svg" alt="Illustration">
</div>
</section>
<section class="features-section">
<div class="container">
<ul class="features-list">
<li>Unlimited Tasks</li>
<li>SMS Task Reminders</li>
<li>Confetti Explosions Upon Task Completions</li>
<li>Social Media Announcements</li>
<li>Real-Time Collaboration</li>
<li>Other Awesome Features</li>
</ul>
<img src="images/holding-phone.jpg" alt="Person holding a phone">
</div>
</section>
<section class="testimonials-section">
<div class="container">
<ul>
<li>
<img src="images/person.jpg" alt="Person">
<blockquote>Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.</blockquote>
<cite>- Jane Doe</cite>
</li>
<li>
<img src="images/person.jpg" alt="Person">
<blockquote>Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.</blockquote>
<cite>- Jane Doe</cite>
</li>
<li>
<img src="images/person.jpg" alt="Person">
<blockquote>Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before.</blockquote>
<cite>- Jane Doe</cite>
</li>
</ul>
</div>
</section>
<section class="contact-section">
<div class="container">
<div class="contact-left">
<h2>Contact</h2>
<form action="">
<label for="name">Name</label>
<input type="text" id="name" name="name">
<label for="message">Message</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
<input type="submit" class="send-message-cta" value="Send message">
</form>
</div>
<div class="contact-right">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d207446.2481965256!2d139.6007842640055!3d35.66844146191366!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x60188b857628235d%3A0xcdd8aef709a2b520!2sTokyo%2C%20Japan!5e0!3m2!1sen!2sus!4v1623382495681!5m2!1sen!2sus" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</section>
<script>
const mobileBtn = document.getElementById('mobile-cta')
nav = document.querySelector('nav')
mobileBtnExit = document.getElementById('mobile-exit');
mobileBtn.addEventListener('click', () => {
nav.classList.add('menu-btn');
})
mobileBtnExit.addEventListener('click', () => {
nav.classList.remove('menu-btn');
})
</script>
</body>
</html>