-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
193 lines (170 loc) · 3.99 KB
/
contact.html
File metadata and controls
193 lines (170 loc) · 3.99 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.fa {
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-youtube {
background: #bb0000;
color: white;
}
.italics{
font-size: 20px;
font-family: Cursive;
margin-left: 50px;
margin-right: 50px;
margin-top:50px;
color: #50500;
position: absolute;
background-image: linear-gradient(to right,#bf953f,#fcf6ba,#b38728, #fbf5b7,#aa771c);
}
#body{background-color: #ff4500;
background-size: cover;
background-attachment: fixed;
}
.lists{
font-size: 20px;
font-family: Calibri;
margin-left: 50px;
margin-top:100px;
background-color: #bb3f3f;
color: #50500;
padding: 50px 50px 50px 50px;
margin-right: 50px;
}
.center{
text-align: center;
margin-bottom: 50px;
margin-top: 50px;
height:10%;
width:40%;
}
.social{
height:5%;
width:5%;
border-radius:30%;}
.majestic{
font-size: 65px;
font-family: Cursive;
margin-left: 50px;
margin-right: 50px;
margin-top: 100px;
background-color: #ff4500;
text-align:center;
color: aliceblue;}
.majesticc{font-size: 65px;
font-family: Cursive;
margin-left: 50px;
margin-right: 50px;
margin-top: 100px;
background-color: aliceblue;}
.spam{
height: 150px;
width: 75px;
background-color: #808080;
font-size: 50px;
margin-left:50px;
margin-right:50px;
padding: 50px 50px 50px 50px;}
.spamm{
height: 150px;
width: 75px;
background-color: aliceblue;
font-size: 50px;
margin-left:50px;
margin-right:50px;
padding: 50px 50px 50px 50px;}
.nam{
font-family:'Yusel Magic', 'Lucida Sans';
background-color:aliceblue;
height:80px;
width: 100%;
position: absolute;
}
.namimg{
height:80px;
width: 20%;
position:absolute;
float:left;
display: inline-block;
}
.namul{
margin-right: 20px;
float: right;
}
.namull{margin-left: 20px;
float: left;}
.namulli{
display: inline-block;
padding: 0 20px;
line-height: 80px;}
.namullia{
text-transform: uppercase;
font-size: 17px;
color:Tomato;}
.brdr{border-bottom-style: dotted;
}
#king{}
#queen{}
#rook{}
#bishop{}
#knight{}
#pawn{}
.steps{border-right-style: solid;
border-left-style: solid;
border-bottom-style: dotted;}
}
</style>
</head>
<body id="body">
<header>
<nav class="nam">
<label class="logo">
<img src="20210313_121015_0000.png" class="namimg">
</label>
<ul class="namul">
<li class="namulli><a href="index.html" class="namullia>home</a></li>
<li class="namulli"><a href="mental.html"class="namullia">mental health</a></li>
<li class="namulli"><a href="contact.html"class="namullia">contact us</a></li>
<li class="namulli"><a href="motherhood.html"class="namullia">mother's corner</li>
<li class="namulli"><a href="scholarships.html" class="namullia">scholarships</a></li>
</ul>
</nav>
</header>
<br>
<hr>
<h4 class="majestic">JOIN OUR ACADEMY</h4>
<form class="lists">
<h2>Your Bio</h2>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" placeholder="Official first name"><br><br><hr>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" placeholder="second name"></input><br><br><hr>
<label for="email">Email id:</label><br><input type="email" id="email" name="email" placeholder="example@email.com"></input>
<br><br><hr>
<h2>Course Details</h2>
<label for="yes_no_radio">Do you want our demo class?</label><input type="radio" name="yes_no">yes</input><input type="radio" name="yes_no">no</input><br><br><hr>
<label for="cars">Choose a course:</label>
<select name="course" id="course">
<option value="beginner course">beginner course</option>
<option value="intermediate course">intermediate course</option>
<option value="advanced course">advanced course</option>
</select><br><br><hr>
<textarea name="comment">What are your expectations from this course?</textarea><br><hr><input type="submit"></form>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>