-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathAssignment_AdityaC.html
51 lines (43 loc) · 1 KB
/
Assignment_AdityaC.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
<html>
<head>
<style>
body {background-color:powderblue;}
p {color:white; font-size:200%}
</style>
<title>
Ac's Website
</title>
</head>
<body>
<h1 style="color:green;">Welcome To Aditya's Website</h1>
<h4 style="font-size:220%;"> About Me <h4>
<p>
My Name is Aditya and I am from Bangalore. I am presently studying <br>at NITK, Surathkal in Mangalore. I like coding but havent had
any <br>previous experiences with HTML and CSS. I like playing carrom , <br>badminton and cricket. I also like painting, drawing and listening to songs.
</p>
<h3 style ="color:red;"> Please Fill Up This Form To Help Improve Our Website :) <h3>
<form
color:white>
First name : <br>
<input type = "text"
name="firstname"><br>
Last name:<br>
<input type="text"
name="lastname"><br>
Age: <br>
<input type="number"
age="age">
<br>
Gender :<br>
<select gender = "dropdown">
<option value = "male"
selected>Male</option>
<option value =
"female">Female</option>
</select>
<br><br>
Suggestions :<br>
<input type="text">
</form>
</body>
</html>