-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
71 lines (57 loc) · 2.25 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
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Portfolio</title>
<!--(Font awesome) icons-->
<script src="https://kit.fontawesome.com/d5ac8b4c0f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<!--Google fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merienda:wght@600&family=Montserrat:wght@700&family=Tilt+Warp&family=Ubuntu&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<a class="logo">Portfolio</a>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="skills.html">SKILLS</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="contact.html">CONTACT ME</a></li>
</ul>
</nav>
<h1 class="contact-heading">Contact Me</h1>
<div class="form-info">
<form method="post" action="submit_form.php">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" required>
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
<button type="submit" class="btn">Send</button>
</form>
</div>
<section id="footer">
<div class="f1">
<p>© 2023 by Priyanka Pragada</p>
</div>
<div class="f2">
<p>Phone</p><br>
<p>9182262949</p>
</div>
<div class="f3">
<p>Mail</p><br>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="f4">
<p>Follow</p> <br>
<a href="https://www.linkedin.com/in/priyanka-pragada-040240255/" class="fa-brands fa-linkedin footer-icons"></a>
<a href="https://github.com/Priya-49" class="fa-brands fa-github footer-icons"></a>
<i class="fa-brands fa-instagram footer-icons"></i>
</div>
</section>
</body>
</html>