-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
54 lines (48 loc) · 2.39 KB
/
Copy pathcontact.html
File metadata and controls
54 lines (48 loc) · 2.39 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
<!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>Document</title>
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<div id="navbar" class="navbar"></div>
<div id="contactdiv">
<div><p>You can contact our team by filling this form -</p></div>
<label for="">Firstname*</label><br><br><input type="text" id="firstname" placeholder="Please enter your first name*"><br><br>
<label for="">Lastname*</label><br><br><input type="text" id="lastname" placeholder="Please enter your last name*"><br><br>
<label for="">Email*</label><br><br><input type="email" id="email" placeholder="Please enter your email*"><br><br>
<label for="">Phone</label><br><br><input type="number" id="Phone" placeholder="Please enter your phone*"><br><br>
<label for="">Message</label><br><br><input type="text" id="Message" placeholder="Please enter your message*"><br><br>
<input type="submit" id="sendmessage" name="submit" value="Send message">
</div>
<!-- footer -->
<div id="footer">
<div id="left">
<div id="f-logo">
<img src="https://64.media.tumblr.com/78aa4e4d291288b353bfeb6c02ec5bb8/65df1d7671104852-d8/s1280x1920/ff3615535a4f4ef46e24cb0d3533cba522aa2c57.pnj" alt="">
</div>
<div id="content">
<pre>
Welcome to BestReads, a place where you can see awesome books!
We're dedicated to giving you the very best experience by making
your favorite books easily accessible to you. If you have any questions
or comments, don't hesitate to contact us.
</pre>
</div>
</div>
<div id="right">
<h4>Get To Know Us</h4>
<li><a href="/about.html">About </a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="./index.html">Search</a></li>
</div>
</div>
</body>
</html>
<script type="module" src="./contact.js">
</script>