-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
65 lines (65 loc) · 2.16 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Us</title>
<link rel="stylesheet" href="./css/conta.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Herr+Von+Muellerhoff&family=Montserrat:wght@400;500&family=Poppins&display=swap"
rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lush Parlour</title>
<link rel="shortcut icon" href="./img/ice-pop-favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" type="text/css" href="./css/media.css">
</head>
<body>
<div id="hero">
<header>
<h1 id="logo"><a href="#" class="logo__link"> Lush|Parlour </a></h1>
<nav>
<ul class="nav">
<div class="nav__links">
<a href="index.html" class="nav__item ">
<li class="nav__item--underline">SHOP</li>
</a>
<a href="contact.html" class="nav__item">
<li>CONTACT</li>
</a>
<a href="reg.html" class="nav__item">
<li>REGISTER</li>
</a>
</div>
<button href="#" class="nav__item nav__item--cart">
<li><i class="fas fa-shopping-cart"></i></li>
</button>
<div class="burger nav__item">
<span class="line1"></span>
<span class="line2"></span>
<span class="line3"></span>
</div>
</ul>
</nav>
</header>
</div>
<div class="wrapper">
<div class="title">
<h1>Get in touch..</h1>
</div>
<div class="contact-form">
<div class="input-fields">
<input type="text" class="input" placeholder="Name" required="">
<input type="text" class="input" placeholder="Email Address" required="">
<input type="text" class="input" placeholder="Phone" required="">
<input type="text" class="input" placeholder="Subject" required="">
</div>
<div class="msg">
<textarea placeholder="Message"></textarea>
<div class="btn">send</div>
</div>
</div>
</div>
</body>
</html>