-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.86 KB
/
index.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
<!doctype html>
<html lang="en">
<header>
<title>Sanjana Rai</title>
<link rel="stylesheet" href="master.css">
<link rel="FaviconIcon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width-device-width, initial-scale-1, shrink-to-fit=no">
</header>
<body>
<img src="header.jpg" width="75%" alt="banner">
<h1>Sanjana Rai</h1>
<h2>About Me</h2>
<p>I am a UI/UX designer interested in Web Development.</p>
<p>I am pursuing a Computer Science degree from Vellore Institute of Technology, expected to graduate in May 2021.</p>
<p>I am in the Executive Board of Computer Society of India - VIT Student Chapter, as the Head of Design.</p>
<h2>Credentials and Portfolio</h2>
<p><a href="MyResume.html">My Resume</a> | <a href="https://github.com/Sanjana-R">My GitHub</a> | <a href="https://www.behance.net/sanjanarai">My Behance</a></p>
<h2>Contact</h2>
<p>Drop me a message!</p>
<form action="/action_page.php" method="post">
<label for="fname">Your name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="emailid">Email ID:</label><br>
<input type="text" id="emailid" name="emailid"><br>
<label for="message">Your message:</label><br>
<textarea cols='30' rows='10' id="msg" name='msg' required></textarea><br>
<button type="submit" onclick="myFunction()">Send message</button>
<script>
function myFunction()
{
window.confirm("Press OK to submit.");
}
</script>
</form>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</body>
<footer>
<hr>
<code>Copyright (c) 2020 Sanjana Rai</code>
</footer>
</html>