-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-me.html
42 lines (40 loc) · 1.56 KB
/
contact-me.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">
<link rel="shortcut icon" href="pictures/letter-s.png" type="image/x-icon">
<title>Sumana-Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<a href="#" class="logo">A.Sumana Sree</a>
<nav class="navbar">
<a href="index.html" class="active">Home</a>
<a href="index.html#education">Education</a>
<a href="index.html#experience">Experience</a>
<a href="projects.html">Projects</a>
</nav>
<a href="contact-me.html" class="contact">Contact Me</a>
</header>
<section id="contact-me" class="contact-form">
<div class="contact-box">
<h2 class="contact-me">Send me a message here...</h2>
<form action="#" >
<div class="input-box">
<input type="text" placeholder="First name">
<input type="text" placeholder="Last name">
</div>
<div class="input-box">
<input type="number" placeholder="Phone Number">
<input type="email" placeholder="email">
</div>
<textarea name="" id="" cols="30" rows="1" placeholder="Subject"></textarea>
<textarea name="" id="" cols="30" rows="5" placeholder="Your Message"></textarea>
<input type="submit" value="Send Message" class="btn-1">
</form>
</div>
</section>
</body>
</html>