-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (37 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" media = 'screen and (max-width: 768px)' href="./CSS/mobile.css">
<link href="https://fonts.googleapis.com/css?family=Lato|Staatliches&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body style="background-color:#CDB599FF;">
<div class="container3">
<h1 style="background-color:#CDB599FF;">CONTACT US</h1>
</div>
<hr><hr><hr><hr>
<div class="container2">
<form action="action_page.php">
<label for="fname"><strong> Name:</strong></label>
<input type="text" id="fname" name="firstname" placeholder="Your name.."><br><br><br>
<label for="lname"><strong>Last Name:</strong></label>
<input type="text" id="lname" name="lastname" placeholder="Your last name.."><br><br><br>
<label for="country"><strong>Country</strong></label>
<select id="country" name="country">
<option value="India">India</option>
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select><br><br><br>
<label for="subject"><strong>Subject:</strong></label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:100px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>