-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
30 lines (30 loc) · 1.25 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
<!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 rel="stylesheet" href="style.css" />
<title>GDSC | contact</title>
</head>
<body>
<div class="navbar">
<a href="./index.html" class="item">Home</a>
<a href="./about.html" class="item">About</a>
<a href="#" class="item">Contact</a>
</div>
<form>
<div class="container margin-y">
<p><span>Delighted!</span> for your attention</p>
<label for="name"><i><b>Name*</b></i></label>
<input class="name" type="text" placeholder="Enter your name" name="name" required>
<label for="email"><em><b>Email*</b></em></label>
<input class="email" type="email" placeholder="Enter your email" name="email" required>
<label for="message"><em><b>Message*</b></em></label>
<textarea class="message" name="message" id="message" cols="30" rows="10" placeholder="Enter your message" required></textarea>
<button class="hangup" type="submit">Hang Up</button>
</div>
</form>
</body>
<script src="script2.js"></script>
</html>