-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactMe.html
58 lines (56 loc) · 2.54 KB
/
contactMe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact me | Trisha Das | Portfolio</title>
<!-- linked stylesheet -->
<link rel="stylesheet" href="./contactMe.css">
<!-- link animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<body>
<header>
<nav>
<a href="./index.html" style="font-size: 22px; font-weight: 700;" >Trisha Das | <span class="auto-type">Frontend Developer</span></a>
<ul class="links">
<li><a href="./aboutMe.html">About Me</a></li>
<li><a href="./project.html">Project</a></li>
<li><a href="./contactMe.html">Contact Me</a></li>
</ul>
<i class="fa-solid fa-bars bar"></i>
</nav>
<div class="responsive-navbar animate__animated animate__fadeInDown">
<ul class="responsive-links">
<a href="./aboutMe.html"><li>Experience</li></a>
<a href="./aboutMe.html"><li>Education</li></a>
<a href="./project.html"><li>Projects</li></a>
<a href="./aboutMe.html"><li>Skills</li></a>
<a href="./skill.html"><li>Contact Me</li></a>
</ul>
</div>
</header>
<main>
<!-- <img src="./assets/contactMe.jpg" alt="Image"> -->
<p class="text animate__animated animate__zoomIn">Contact Me</p>
<form action="https://formsubmit.co/5463898ed9b0f8bb4ed5227ce3b23268" method="POST" class="animate__animated animate__zoomIn" >
<div class="col-18">
<input class="textbox-18" type="text" placeholder="First Name" name="name" required>
<span class="focus-border-18"><i></i></span>
</div>
<div class="col-18">
<input class="textbox-18" type="Email" placeholder="Email" name="email" required>
<span class="focus-border-18"><i></i></span>
</div>
<div class="col-18">
<textarea name="message" class="textbox-18 textarea" cols="50" rows="50" placeholder="Message" required></textarea>
<span class="focus-border-18"><i></i></span>
</div>
<button>Submit</button>
</form>
</main>
<!-- font awesome linked -->
<script src="https://kit.fontawesome.com/bfe5da5748.js" crossorigin="anonymous"></script>
</body>
<script src="./aboutMe.js"></script>
</html>