-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
42 lines (41 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sid's contact information</title>
<link
href="https://fonts.googleapis.com/css?family=Comfortaa|Merriweather|Rajdhani&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<header>
<div class="leftlogo">
<h1 class="leftlogoh1">Sid Nelakuditi</h1>
</div>
<div class="rightnav">
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</div>
</header>
<div class="contactme">
<h1>Contact Me</h1>
<hr />
<form action="mailto:sid.nelakuditi@gmail.com">
<label for="">Your Name:</label><br />
<input type="text" /><br />
<label for="">Your Email:</label><br />
<input type="email" name="" id="" /><br />
<label for="">Your Message:</label><br />
<textarea name="" id="" cols="30" rows="10"></textarea><br />
<input type="button" value="submit">
</form>
</div>
<footer></footer>
</body>
</html>