-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
28 lines (27 loc) · 1003 Bytes
/
Copy pathcontact.html
File metadata and controls
28 lines (27 loc) · 1003 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
<!DOCTYPE html>
<!-- Create your homepage structure here! -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Personal Website Workshop</title>
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div>
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="experience.html" ">Experience</a>
<a href="#"class="disabled">Contact</a>
</div>
<form>
<label>Name: </label> <input type = "text" id = "name" name = "name"><br>
<label>Email: </label> <input type = "text" id = "email" name = "email"> <br>
<label>Message: </label> <textarea id = "message" name = "message"></textarea>
<input type = "submit">
</form>
<a href = "www.google.com"
<img width = "25" src = "https://d.newsweek.com/en/full/458744/510-instagram.jpg?w=1600&h=1600&q=88&f=2653c255c0d40001ce57e823a4cfa1a7"/>
</a>
</body>
</html>