-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAS.html
219 lines (211 loc) · 6.73 KB
/
AS.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!DOCTYPE html>
<!-- Our HTML code starts here -->
<html lang="en">
<!--our head tag starts here-->
<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">
<meta name="keywords" content="This is description">
<meta name="robots" content="html,html tutorials ,web development">
<meta name="robots" contents="INDEX,FOLLOW">
<title>Intro to web development</title>
<!-- <link rel="stylesheet" href="ashfiya.css"> -->
<style>
p{
color: blueviolet;
background-color: crimson;
font-style: italic;
}
h1{
color: blue ;
font-family: cursive;
font-size: 33px;
line-height: 8.em;
font-weight: bold;
font-style: oblique;
}
span{
color: rgb(29, 255, 27);
}
h3{
color: rgba(21, 185, 57, 0.685);
font-style:oblique
}
.container{
border: 4px solid rgb(17, 4, 4)
}
form{
color: salmon;
}
ul{
font-style: italic;
color:silver
}
.store{
border: 2px solid rgb(150, 231, 28);
background-color: rgb(226, 48, 211);
padding: 34px;
margin : 34px auto;
width: 200px;
float: none;
}
.btn{
background-color: rgb(236, 211, 72);
padding: 10px;
border:none;
cursor:pointer;
font-style: oblique;
}
h2{
color: rgb(241, 28, 70);
font-style: italic;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<!--our head tag starts here-->
<body bgcolor="violet">
<h1>first heading</h1>
<h2>second heading </h2>
<h3><centre>THIRD HEADING</centre></h3>
<h4>fourth heading</h4>
<h5>fifth heading</h5>
<h6>sixth heading</h6>
<hr>
<p><em>Shashank Joshi</em> ,<i>italic</i> member of,<strong> Maharashtra’s Covid-19 task force</strong>, said <b>bold</b> the vaccines being used in India<br> Bharat Biotech’s Covaxin and Serum Institute of India’s Covishield, a version of the Oxford-AstraZeneca vaccine, are absolutely safe — and minor side-effects are expected in some cases, not just for these particular vaccines, but any other vaccine as well. Here are some of the things you need to know, and some precautions that you should take before getting vaccinated.</p>
<a href="https://google.com"target="_blank">Go to Google</a>
<a href="https://facebook.com"target="_blank">Go to facebook</a>
<a href="https://linkedin.com"target="_blank">go to linkedin</a>
<a href="https://github.com"target="_blank">go to github</a>
<!-- <p style="color: hotpink; background-color: yellow;"> THIS IS A PARAGRAPH WRITING</p> -->
<!-- image is not present hence alt text is shown -->
<img src="ashfiya.jpg" alt="Error loading image">
<img src="https://source.unsplash.com/user/erondu/200x100" alt="remote image">
<ol type="A">
<li>HTML</li>
<ul>
<li>OPEN TAGS</li>
<li>CLOSE TAGS</li>
</ul>
<li>CSS</li>
<li>JS</li>
<li>MYSQL</li>
<li>BOOTSTRAP</li>
</ol>
<ul type="square">
<li>WEB</li>
<li>ML</li>
<li>AI</li>
<li>APP</li>
</ul>
<u><center>ASHFIYA KHAN</center></u>
<hr>
<B><center>ASHFIYA KHAN</center></B>
<hr>
<I><center>ASHFIYA KHAN</center></I>
<img src="">
<!--tables-->
<table border="3">
<tr>
<th>NAME</th>
<th>ROLL NO.</th>
<th>BRANCH</th>
</tr>
<tr>
<td>Ahsan</td>
<td>1</td>
<td>CSE</td>
</tr>
<tr>
<td>Adnan</td>
<td>2</td>
<td>AI</td>
</tr>
<tr>
<td>Aslam</td>
<td>3</td>
<td>ML</td>
</tr>
</table>
<hr>
<!--forms-->
<form action="process.php" method="POST">
<div>
<label>FIRST NAME</label>
<input type="text" name="firstname">
</div>
<br>
<div>
<label>LAST NAME</label>
<input type="text" name="lastNAME">
</div>
<br>
<div>
<label>EMAIL</label>
<input type="email" name="email">
</div>
<br>
<div>
<label>MESSAGE</label>
<textarea name="" ></textarea>
</div>
<br>
<div>
<label>GENDER</label>
<select name="gender">
<option value="male">MALE</option>
<option value="female">FEMALE</option>
<option value="other">OTHER</option>
</select>
</div>
<br>
<div>
<label>AGE</label>
<input type="number" name="age">
</div>
<br>
<div>
<label>ARE YOU ELIGIBLE</label>
<input type="checkbox" name="candidate">
</div>
<br>
<div>
STATUS: LITERATE <input type="radio" name="candidate">ILLITERATE<input type="radio" name="candidate">
</div>
<br>
<div>
<label>BIRTHDAY</label>
<input type="date" name="birthday">
</div>
<br>
<input type="submit" name="submitnow">
<input type="reset" name="resetnow">
</form>
<br>
<!--buttons-->
<button>Click Me</button>
<br><
<div class="container">>
<p>This is paragraph</p>
<p>para is written like this <a></p>
<p>dollar is written like this $</p>
<p>pound is written like this <span>£</span></p>
</div>
<br>
<div class="store" id="store 1">
<h3>This is my heading</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolores fuga accusamus,
dignissimos eveniet eum debitis! Incidunt eaque qui, numquam at nemo fugiat similique,
adipisci excepturi ipsa id sit minus recusandae, officiis ullam ducimus illo?</p>
<a href="" class="btn">Read more</a>
<button class="btn">Contact us</button>
</div>
<centre>
<div class="heart">
<h2>ASHFIYA</h2>
<!-- <P>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nostrum quae distinctio in dolore deleniti cupiditate facere, ducimus iure eos ipsam quam sunt accusantium magni error eligendi saepe delectus consectetur! Maxime officia rerum, debitis asperiores optio esse laudantium ut veritatis ducimus voluptatum provident, exercitationem sit!</P> -->
</div>
</centre>
</body>
</html>