-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (108 loc) · 4.64 KB
/
index.html
File metadata and controls
129 lines (108 loc) · 4.64 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
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>Responsive Design</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="navbar">
<div class="container">
<a class="logo" href="#">Belief<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="Close 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 src="Images/illustration.svg" class="hero-img"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="Man holding phone">
</div>
</section>
<section class="testimonials-section">
<div class="container">
<ul>
<li>
<img src="Images/person.jpg" alt="person">
<blockquote>"Lorem ipsum dolor sit amet, consetetur sadipscing elitr"</blockquote>
<cite>Seth Rollins</cite>
</li>
<li>
<img src="Images/person.jpg" alt="person">
<blockquote>"Lorem ipsum dolor sit amet, consetetur sadipscing elitr"</blockquote>
<cite>Roman Reigns</cite>
</li>
<li>
<img src="Images/person.jpg" alt="person">
<blockquote>"Lorem ipsum dolor sit amet, consetetur sadipscing elitr"</blockquote>
<cite>Dean Ambrose</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!1d52871.86609908544!2d-118.43455360746643!3d34.082543932798394!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80c2bc04d6d147ab%3A0xd6c7c379fd081ed1!2sBeverly%20Hills%2C%20CA%2C%20USA!5e0!3m2!1sen!2ske!4v1662042994225!5m2!1sen!2ske"></iframe>
</div>
</div>
</section>
<script>
const mobileBtn = document.getElementById("mobile-cta")
nav = document.querySelector("nav")
mobileBtn = document.getElementById("mobile-exit");
mobileBtn.addEventListener("click", () => {
nav.classlist.add("menu-btn");
})
mobileBtnExit.addEventListener("click", () => {
nav.classlist.remove("menu-btn");
})
</script>
</body>
</html>
//width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"