-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
82 lines (81 loc) · 3.46 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="likes.css">
<link rel="stylesheet" href="contact.css">
<script src="https://kit.fontawesome.com/9317428498.js" crossorigin="anonymous"></script>
<script src="script.js" defer></script>
<link rel="shortcut icon" href="shortcut-icon.png" type="image/x-png">
<title>Contact Us</title>
</head>
<body>
<header>
<a href="index.html" class="flex-header left-header">
<img src="logo.png" alt="logo" class="logo">
</a>
<ul class="flex-header right-header">
<li class="down">
<div class="product">
<p>Products</p>
<div class="product-items display-none">
<ul>
<li><a href="likes.html">Likes</a></li>
<li><a href="followers.html">Followers</a></li>
</ul>
</div>
</div>
</li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">Contacat Us</a></li>
</ul>
</header>
<header class="media-header">
<div><a href="index.html">
<img src="logo.png" alt="Logo" class="media-logo"></a>
<i class="fa-solid fa-bars"></i>
</div>
<div class="media-header-dropdown display-none">
<ul>
<li class="down"><div class="product">
<p>Products</p>
<div class="product-items display-none actually-none">
<ul>
<li><a href="likes.html">Likes</a></li>
<li><a href="followers.html">Followers</a></li>
</ul>
</div></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="contact.html">Contacat</a></li>
</ul>
</div>
</header>
<div class="body">
<section class="first-section">
<h2>📮 Contact Us</h2>
<p>Do you have any feedback or questions about our service? </p>
<p>Leave us a message and we will contact you as soon as possible.</p>
<form action="" method="post">
<label for="subject">Subject</label>
<input type="text" name="subject" id="subject">
<label for="name">Name</label>
<input type="text" name="name" id="name">
<label for="email">Email</label>
<input type="email" name="email" id="email">
<label for="message">Message</label>
<textarea name="message" id="message" ></textarea>
<button type="submit">Submit</button>
</form>
</section>
</div>
<footer>
<p>© 2022 All Rights Reserved</p>
</footer>
</body>
</html>