-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
52 lines (45 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./svg/Group 11.png" type="image/x-icon">
<link rel="stylesheet" href="./Styles/daily.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap" rel="stylesheet">
<title>Contact</title>
</head>
<body class="cbody">
<nav class="nav-bar">
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div class="logo">
<h1><a href="./index.html">Relaxingo</a></h1>
</div>
<div class="nav-links">
<ul>
<li><a href="./home.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="contact">
<h1 class="c-heading">Contact Us</h1>
<form action="/thanks.html" class="contact-form" name="contact" method="POST" netlify>
<input name="name" type="text" class="contact-form-text" placeholder="Name" required>
<input name="email" type="email" class="contact-form-text" placeholder="Email" required>
<textarea name="message" class="contact-form-text" placeholder="Message" required></textarea>
<input type="submit" class="contact-form-btn" value="Send">
</form>
</div>
<div class="c-svg">
<img src="./svg/contact us.svg" alt="">
</div>
<script data-ad-client="ca-pub-8883187723683486" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script src="./app.js"></script>
</body>
</html>