-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathContact.html
More file actions
125 lines (119 loc) · 4.07 KB
/
Contact.html
File metadata and controls
125 lines (119 loc) · 4.07 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
<!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>Contact us</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/27551d6060.js"
crossorigin="anonymous"
></script>
<link
href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/contact.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/nav.css" />
</head>
<body>
<nav>
<div class="topnav" id="myTopnav">
<div class="logo">
<img src="img/online-shop.jpg" alt="" />
<img src="/img/moon.png" alt="" id="darkmode-icon" />
</div>
<div class="nvl">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="#news">About</a>
<a class="nav-link" href="#contact">Services</a>
<a class="nav-link" href="Contact.html" class="active">Contact Us</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<form class="srch" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search"
/>
<!-- <button class="btn btn-outline-dark" type="submit">
<img style="width: 26px" src="img/search.png" alt="" />
</button> -->gti
</form>
<button id="themeToggleBtn" class="theme-toggle-btn">🌙</button>
<!-- Theme toggle button -->
</div>
</div>
</nav>
<main>
<div class="title">Contact US</div>
<div class="title-info">We'll get back to you soon!</div>
<center>
<form action="" method="" class="form">
<div class="input-group">
<!-- <label class="form-label" for="first-name">First name</label> -->
<input
class="form-control border border-dark rounded"
type="text"
name="first_name"
id="first-name"
placeholder="First name"
/>
</div>
<div class="input-group">
<!-- <label for="last-name">Last name</label> -->
<input
class="border form-control border-dark rounded"
type="text"
name="last_name"
id="last-name"
placeholder="Last Name"
/>
</div>
<div class="input-group">
<!-- <label for="e-mail">E-mail</label> -->
<input
class="border form-control border-dark rounded"
type="email"
name="e-mail"
id="e-mail"
placeholder="E-mail"
/>
</div>
<div class="textarea-group">
<!-- <label for="message">Message</label> -->
<textarea
class="border form-control border-dark rounded"
name="message"
id="message"
rows="5"
placeholder="Message"
></textarea>
</div>
<div class="button-div">
<button type="submit">Send</button>
</div>
</form>
</center>
</main>
<script src="script.js"></script>
</body>
</html>