-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.73 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
<!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">
<link rel="stylesheet" type="text/css" href="./style.css" media="screen">
<link rel="icon" href="Assets/logo-grande.png" />
<title>Overthink</title>
</head>
<body>
<div class="header-content">
<div class="div-logo">
<a href="www.overthink.com.br/"><img id="logo" src="Assets/logo-texto.png"></a>
</div>
</div>
<div class="topnav">
<ul id="MenuSuperior">
<li>Shop</li>
<li>Contact</li>
<li>Lookbook</li>
<li>Login</li>
<input class="searchbar" type="text" id="Searchbar" name="Searchbar" placeholder="Search">
</ul>
</div>
<img class="main-banner" href="Assets/banner-overthink-cjr" />
<div class="newsletter">
<a class="main-text-newsletter">Join our Newsletter</a><br/>
<a class="sub-text-newsletter">So you know when our next drop comes live</a>
<div class="inputs">
<input type="text" id="Fname" name="Fname" placeholder="First Name">
<br/><br/>
<input type="text" id="Lname" name="Lname" placeholder="Last Name">
<br/><br/>
<input type="email" id="Email" name="Email" placeholder="Email">
<br/><br/>
<input type="checkbox" id="Sales" name="Sales" value="Sales">
<label for="Sales">I want to receive promotional emails such as sales<br/> and early access to upcoming releases.</label>
<br/><br/>
<button class="submit-button">Submit</button>
</div>
</div>
</body>
</html>