-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
64 lines (57 loc) · 2.53 KB
/
contact.html
File metadata and controls
64 lines (57 loc) · 2.53 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
<!DOCTYPE html>
<html>
<head>
<title> Contact Ruhee Jain</title>
<meta charset="utf-8">
<link href="portstyle.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<div id="container">
<ul id="nav" class="animate__animated animate__backInDown">
<li> <a href="Home.html"> HOME </a> </li>
<li> <a href="About.html"> ABOUT </a> </li>
<li> <a href="skills.html"> SKILLS </a> </li>
<li> <a href="contact.html"> CONTACT </a> </li>
</ul>
<div id="header" class="animate__animated animate__zoomIn">
<span class="btn">CONTACT ME</span>
<!--<h1 style="margin: 100px 10px 10px 150px;"> CONTACT ME!</h1>-->
</div>
<div id="content">
<p style="font-size: 20px;"> How much you liked my portfolio? Feel free to give your response by filling the form. In case you want to contact me I communicate most effiecently through linkedIn.</p>
<div id="contact">
<form>
<label for="fname"> Name : </label>
<input type="text" id="fname" name="fname" placeholder="Enter Your Name"><br><br>
<label for="Email"> Email ID : </label>
<input type="text" name="Email" id="Email" placeholder="Enter Your Email"><br><br>
<label for="Message"> Message: </label><br>
<textarea name="practice" rows="10" cols="20" > </textarea><br><br>
<input type="Submit" name="Send Your Response">
</form>
</div>
<div id="social">
<h3 style="font-size: 30px;"> My Social Profiles</h3>
<p style="font-size: 20px;"> Would love to connect with you! I'm available on following platforms.</p>
<ul>
<li>
<a href="https://twitter.com/Ruheejain_?s=09"><img src="https://seeklogo.com/images/T/twitter-logo-C591CF37A1-seeklogo.com.png" style="width: 100px; height: 50px;"> </a>
</li>
<li>
<a href="https://www.linkedin.com/in/ruhee-jain-47447b196/"> <img src="https://www.nextbigbrand.in/wp-content/uploads/2019/04/linkedin.jpg" style="width: 100px; height: 50px;"></a>
</li>
<li>
<a href="https://www.instagram.com/ruheejain_/"> <img src="https://static01.nyt.com/images/2016/05/11/us/12xp-instagram/12xp-instagram-facebookJumbo-v2.jpg" style="width: 100px; height: 50px;"> </a>
</li>
<li>
<a href="https://github.com/Ruheej1"> <img src="https://p.kindpng.com/picc/s/128-1280187_github-logo-png-github-transparent-png.png" style="width: 100px; height: 50px;"> </a>
</li>
</ul>
</div>
</div>
<div id="footer">
<p id="copyright"> @ Ruhee Jain (Plagairism is a crime!).</p>
</div>
</div>
</body>
</html>