forked from sid-iitk/ACA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
221038.html
159 lines (127 loc) · 3.56 KB
/
221038.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Profile Shriya Garg</title>
<style>
.sidenav {
height: 100%;
width: 160px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: Black
}
.sidenav a {
padding: 6px 8px 6px 16px;
font-size: 25px;
display: block;
color: #45A29E
}
.sidenav a:hover {
color: #f1f1f1;
}
.main {
margin-left: 200px;
font-size: 28px;
padding: 0px 20px;
}
h2 {
color: #66FCF1;
font-size: 40px;
text-align: center;
text-decoration: underline;
}
p {
color: #C5C6C7;
font-size: 30px;
}
b,label{
color: #7c7e80;
}
input[type=text], input[type=tel]{
width: 100%;
display: inline-block;
background-color: whitesmoke;
border-radius: 4px;
box-sizing: border-box;
margin: 8px 0;
padding: 12px 20px;
}
textarea {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
background-color: whitesmoke;
font-size: 16px;
resize: none;
}
input[type=submit] {
width: 100%;
background-color: #29bfba;
color: whitesmoke;
padding: 14px 20px;
margin: 8px 0;
border-radius: 4px;
cursor: pointer;
font-size :25px;
}
input[type=submit]:hover {
background-color: #1c7e7a;
}
</style>
</head>
<body style="background-color: #1F2833">
<div class="sidenav">
<a href="#Intro">Introduction</a> |
<a href="#PI">Personal Information</a> |
<a href="#CI">Contact Information</a> |
<a href="#form">Contact me form</a>
</div>
<div class="main">
<section id="Intro">
<H2> Introduction</H2>
<p> Welcome to the the personal page of Shriya Garg. My contact details are mentions, kindly use the navigation bar to navigate through, and contact me via the form given</p>
</section>
<hr>
<section id="PI">
<h2>Personal Information</h2>
<p> <b>Name:</b> Shriya Garg</p>
<p><b> DOB : </b>10-Aug-2004</p>
<p> <b>Institute:</b> IITK</p>
<p> <b>Course:</b> B.Tech CSE</p>
<p><b>HomeTown:</b> Jaipur</p>
<p><b>Blood Group:</b> B+</p>
</section>
<hr>
<section id="CI">
<h2>Contact Info</h2>
<p>Here are my contact information</p>
<p><b> Mail address: </b>[email protected]</p>
<p><b>Address: </b>Hall 4, Indian Institute of Technology, Kanpur</p>
<p><b>Phone No.:</b> 9351113330</p>
</section>
<hr>
<section id="form" >
<H2> Contact me form</H2>
<p>Please fill out this form to conatact me, it will send a mail to my mail address.</p>
<form action="action.php" method="post">
<label for="name"> Name: </label><br>
<input type="text" id="name" name="name"><br>
<label for="email"> Email: </label><br>
<input type="text" id="email" name="email"><br>
<label for="phno"> Phone No.: </label><br>
<input type="tel" id="phno" name="PhoneNo"><br>
<label for="message"> Please type your message: </label><br>
<textarea id="message" name="message" rows="10" cols="30">
</textarea>
<input type="submit" value="SUBMIT" id="submit">
</form>
</section>
</div>
</body>
</html>