-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
83 lines (54 loc) · 1.93 KB
/
contact.html
File metadata and controls
83 lines (54 loc) · 1.93 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Profile</title>
<link rel="stylesheet" type="text/css" href="assets\css\reset.css">
<link rel="stylesheet" type="text/css" href="assets\css\style.css">
<meta name="viewport" content="width=device-width, intial-scale=1">
</head>
<body>
<HEADER id="headcontainer">
<div>
<a href="https://www.visualcv.com/eakta-pandeyresume" class="logo">Eakta Pandey</a>
<nav class="navbar">
<a href="index.html" class="nav">About</a>
|
<a href="portfolio.html" class="nav">Portfolio</a>
|
<a href="contact.html" class="nav">Contact</a>
</nav>
</div>
</HEADER>
<div class="container">
<div class="maincontent">
<h1>Contact</h1>
<div class="subcontent">
<form >
<label class="label" for="username">Name</label>
<br>
<input class="txtbox" type="text" name="Name" placeholder="John Smith">
<br>
<label class="label" for="email">Email</label>
<br>
<input class="txtbox" type="email" name="email" required="true" placeholder="example@gmail.com">
<br>
<label class="label" for="message">Message</label>
<br>
<input class="message" type="text" name="Message">
<br>
<input class="submit" type="submit" name="submit">
</form>
</div>
</div>
<div class="sidebar">
<div class="sidecontent">
<h2>Connect with me</h2>
<a href="https://github.com/eakta178" target="_blank"><img src="assets/images/github-logo-icon-30.png" class="sociallogo"></a>
<a href="https://www.linkedin.com/in/eakta-pandey-57693828/" target="_blank"><img src="assets/images/linkedin-logo.jpg" class="sociallogo"></a>
<a href="https://stackoverflow.com/users/8778536/ep17" target="_blank"><img src="assets/images/stack-logo.png" class="sociallogo"></a>
</div>
</div>
</div>
<footer>© copyright 2017 Eakta Pandey</footer>
</body>
</html>