-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
46 lines (46 loc) · 2.09 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
43
44
45
46
<!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">
<title>portfolio-Assignment</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav class="navigation">
<div class="navbar">
<a href="index.html">Home</a>
<a href="AboutMe.html">About Me</a>
<a href="contact.html" style="color:goldenrod;">Contact Me</a>
<a href="my-gallery.html">My Gallery</a>
</div>
</nav>
</header>
<main>
<div class="contact-form">
<form action="response.html">
<label for="name">Your Name</label>
<input class="input-name" type="text" name="name" placeholder="Enter your name here" required>
<label for="email">Your Email</label>
<input type="email" name="email" placeholder="Enter your email here" required>
<label for="message">Reason for contacting?</label>
<textarea rows="3" placeholder="Type your message here" required></textarea>
<input class="button" type="submit" style="width:300px;" value="submit">
</form>
</div>
<div class="contact-details">
<h3>Connnect me here 👇</h3>
<div class="font-awesome-icons">
<div class="font-awesome-icons">
<a href="https://www.linkedin.com/in/saiprabhu-dandanayak-b7425622a" target="_blank"><i class="fa fa-linkedin-square" style="font-size:36px"></i></a>
<a href="https://github.com/Saiprabhu007/zemoso_training.git" target="_blank"><i class="fa fa-github" style="font-size:36px"></i></a>
<a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox" target="_blank"><i class="fa fa-envelope-square" style="font-size:36px"></i></a>
</div>
</div>
</div>
</main>
</body>
</html>