-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (114 loc) · 3.98 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
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
# kirthana729.github.io
<!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>Document</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
#footer {
margin:auto;
position:centre;
padding: 10px 10px 0px 10px;
bottom: 0;
width: 100%;
/* Height of the footer*/
height: 40px;
background: grey;
}
html{
scrollbar-width: thin;
scrollbar-color: red green;
}
#footer {
text-align: center;
}
</style>
</head>
<body style="text-align: center">
<h1><ins>ThINK OuT Of ThE BoX</ins></h1>
<br>
<ul>
<li><a href="https://www.google.com">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Services</a></li>
<li><a href="">Contact us</a></li>
</ul>
<h3>Hello! Welcome to the Think out of the Box Community.A Community where
people discuss and share their creative ideas with people.Sign up to get all updates regarding the Think Out Of
The Box and be a part of this community now.Join by filling in the details in the contact form below.
</h3>
<h2>Would love to know you!!</h2>
<form style="text-align: center; ">
<label>Name : </label>
<label for="first_name" >First Name:</label>
<input type="text" id="first_name" name="first_name" >
<br><br>
<label for="last_name">Last Name:</label>
<input type="text" id="last_name" name="last_name">
<br><br>
<label for="Gender">Gender:</label>
<label for="He">He</label>
<input type="radio" value="He" id="He" name="Gender">
<label for="She">She</label>
<input type="radio" value="She" id="She" name="Gender">
<br><br>
<label for="college">College:</label>
<select id="college">
<option value="Private">Private</option>
<option value="Government">Government</option>
<option value="Onlinecourse">Onlinecourse</option>
</select>
<br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="xyz@gmail.com">
<br><br>
<label for="age">Age:</label>
<input type="age" id="age" name="age" min="17" max="60">
<br><br>
<label for="birth of date">Birth of Date:</label>
<input type="date" id="birthday" name="birthday">
<br><br>
<label for="Phone number">Phone Number:</label>
<input type="tel" id="phone" name="phone">
<br><br>
<input type="reset">
<input type="submit">
<br> <br>
</form>
<section class="footer" style="text-align: center">
<div class="social" style="text-align: center">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-snapchat"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
</div>
<ul class="list" margin:auto>
<li>
<a href="#" >Home</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Terms</a>
</li>
<li>
<a href="#">Privacy Policy</a>
</li>
</ul>
<p class="copyright">
Think Out Of The Box @2022
</p>
</section>
</body>
</html>