-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
180 lines (158 loc) · 4.24 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!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>Astrocamp||Sample Site</title>
<link href="https://fonts.googleapis.com/css2?family=Cursive&display=swap" rel="stylesheet">
<link rel="stylesheet" href="basic_site_1.css">
</head>
<!--<style>
/*css reset*/
body {
color: white;
margin: 0px;
padding: 0px;
background: url("img/galaxyimg.jpg");
background-repeat: no-repeat;
background-size: 100%;
/* height:850px;*/
}
.left {
display: inline-block;
/* border: 2px solid red;*/
position: absolute;
left: 34px;
top: 15px;
}
.left img {
width: 115px;
}
.left div {
line-height: 12px;
font-family: cursive;
text-align: center;
font-size: 14px;
}
.centre {
font-family: cursive;
display: block;
width: 40%;
margin: 20px auto;
/* border: 2px solid green;*/
}
.right {
font-family: cursive;
display: inline-block;
/* border: 2px solid yellow;*/
position: absolute;
right: 34px;
top: 33px;
}
.navbar li {
display: inline-block;
font-size: 18px;
}
.navbar li a {
color: white;
text-decoration: none;
padding: 25px 15px;
}
.navbar li a:hover {
text-decoration: underline;
color: aqua;
}
.btn {
font-family: cursive;
margin: 0px 9px;
color: white;
background-color: black;
padding: 4px 13px;
border: 2px solid grey;
border-radius: 11px;
font-size: 14px;
cursor: pointer;
}
.btn:hover {
background-color: rgb(109, 139, 148);
}
.container {
text-align: center;
font-family: cursive;
color: azure;
border: 3px solid white;
margin: 80px auto;
padding: 34px 56px;
width: 35%;
border-radius: 12px;
}
.form-group input {
/* text-align: center;*/
font-family: cursive;
display: block;
font-size: 17px;
margin: 10px auto;
padding: 3px;
border: 2px solid black;
border-radius: 12px;
width: 400px;
text-align: center;
}
h1 {
text-align: center;
font-size: 42px;
color: aqua;
}
.form-group_2 {
margin: auto;
padding: 4px;
}
.container button {
width: 400px;
}
</style>--->
<body>
<header class="header">
<div class="left">
<img src="img/Astronomyimg_2.png" alt="" srcset="">
<div>
Astro club
</div>
</div>
<div class="centre">
<ul class="navbar">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Astro centre</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="right">
<button class="btn">Call us now</button>
<button class="btn">Email Us</button>
</div>
</header>
<div class="container">
<h1><u>Join Us Now!!!</u></h1>
<form action="swastik_action.php">
<div class="form-group">
<input type="text" name="" placeholder="Enter your Name">
</div>
<div class="form-group">
<input type="email" name="" placeholder="Enter your Email">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter your Mobile Number">
</div>
<div class="form-group">
<input type="date" name="" placeholder="Enter your Date of Birth ">
</div>
<div class="form-group_2">
Male<input type="radio" name="mygender" id=""> Female<input type="radio" name="mygender"> Others<input type="radio" name="mygender" id="">
</div>
<button class="btn">Submit</button>
</form>
</div>
</body>
</html>