-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
38 lines (36 loc) · 976 Bytes
/
contact.html
File metadata and controls
38 lines (36 loc) · 976 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cantact me</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div style="padding-left: 10px;">
<h3><a href="index.html">Home</a> <a href="contact.html">Contact me</a></h3>
<h1>Contact Me</h1>
<br>
<form action="">
<label>Name:</label><br>
<input type="text">
<br><br>
<label>Email:</label><br>
<input type="email">
<br><br>
<label>Massage:</label><br>
<textarea name="" id=""></textarea>
<br>
<br>
<label for=""> Gender:</label>
<br><br>
<input type="radio" value="Male" name="Gender">Male <br>
<input type="radio" value="Female" name="Gender">Female <br>
<input type="radio" value="Other" name="Gender">Other
<br><br>
<input type="submit" value="submit" style="size: 30px;">
</form>
</div>
</body>
<script src="java.js"></script>
</html>