-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
170 lines (140 loc) · 6.67 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!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">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- Icons -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Title and Icon -->
<link rel = "icon" href = "./assets/img/papertown.jpg" type = "image/x-icon">
<title>ThePaperTown</title>
</head>
<body>
<header>
<div class="header-container">
<a href="index.html" class="logo">
<img src="./assets/img/papertown.jpg" alt="Website's logo Paper Town">
</a>
<nav class="header-nav-pc">
<ul class="header-nav-pc-list">
<li><a href="index.html">Home</a></li>
<li><a href="manga.html">Manga</a></li>
<li><a href="romance.html">Romance</a></li>
<li><a href="literature.html">Literature</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<label for="header-nav-mb-input" class="header-nav-bars-btn">
<i class="uil uil-bars"></i>
</label>
<input hidden type="checkbox" class="nav-input" id="header-nav-mb-input">
<label for="header-nav-mb-input" class="header-nav-overlay">
</label>
<nav class="header-nav-mb">
<label for="header-nav-mb-input" class="header-nav-mb-close">
<i class="uil uil-times"></i>
</label>
<ul class="header-nav-mb-list">
<li><a href="index.html">Home</a></li>
<li><a href="manga.html">Manga</a></li>
<li><a href="romance.html">Romance</a></li>
<li><a href="literature.html">Literature</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Term of use</a></li>
</ul>
</nav>
</header>
<main>
<form enctype='application/x-www-form-urlencoded' method='get' class="contact-container">
<div class="contact-info" >
<h1>Contact Us<i class="uil uil-comment-alt-medical" style="font-size: 1em; padding-left: 10px;"></i></h1>
<p>Need to get in touch with us? Leave your information now!</p>
<div class="contact-purpose">
<label for="">You are here to</label>
<select name="purpose" id="purpose">
<option value="sell">I want to sell books</option>
<option value="buy">I want to buy books</option>
</select>
</div>
</div>
<div class="contact-form">
<div class="contact-content">
<label for="fname">First name:</label>
<input type="text" name='fname' id='fname' placeholder="Your first Name">
</div>
<div class="contact-content">
<label for="lname">Last name:</label>
<input type="text" name='lname' id='lname' placeholder="Your last Name">
</div>
<div class="contact-content">
<label for="email">Email:</label>
<input type="email" name='email' id='email' placeholder="Your email">
</div>
<div class="contact-content">
<label for="phone">Phone:</label>
<input type="number" name='phone' id='phone' placeholder="Your phone number">
</div>
<div class="contact-choose">
<label for="method">How can we contact you:</label>
<br>
<label for="method1">By email</label>
<input type="checkbox" name='method1' id='method1' value="m-email">
<label for="method2">By phone</label>
<input type="checkbox" name='method2' id='method2' value="m-phone">
</div>
<div class="contact-choose">
<label for="">Do you want to receive our weekly newsletter:</label>
<br>
<label for="news1">Yes</label>
<input type="radio" name='news' id='news1' value="n-yes" checked="checked">
<label for="news2">No</label>
<input type="radio" name='news' id='news2' value="n-no">
</div>
<div class="contact-note">
<label for="note">Note:</label>
<textarea name="note" id="note" cols="30" rows="3"></textarea>
</div>
<div class="contact-btns">
<input type="submit" name="submit" id="submit">
<input type="reset" name="reset" id="reset">
</div>
</div>
</form>
</main>
<footer>
<div class="footer-container">
<a href="#" class="footer-name">
<div class="footer-logo">
<img src="./assets/img/papertown.jpg" alt="PaperTown logo">
</div>
<h2>The Paper Town</h2>
</a>
<div class="footer-nav">
<ul class="footer-nav-container">
<li><a href="#">About Us</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Term of Uses</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<hr class="footer-break-bar">
<div class="footer-extra-content">
<div class="copy-right">
<p>Copyright © 2022 <a style="color: rgb(128, 95, 45)" href="">The Paper Town</a> . All Rights Reserved.</p>
</div>
</div>
</footer>
</body>
</html>