-
Notifications
You must be signed in to change notification settings - Fork 0
/
html1.html
149 lines (105 loc) · 3.36 KB
/
html1.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
<!DOCTYPE html>
<html>
<head>
<title>THIS IS MY FIRST PARAGRAPH</title>
</head>
<body>
<a href="https://google.com">GOOGLE</a>
<h1>SPIDERMAN</h1>
<br>
<img src="spider.png">
Al<sub>2</sub>O<sub>3</sub>
2<sup>a</sup>+<sup></sup>3<sup></sup>
<pre>This is not a class but also a marathon</pre>
<big><header>GLA University</header></big>
<main>
<section> Name | Mohd Ahsan Course:Data Structures And Algo </section>
<article>This is all about my story.................</article>
<aside>Ads</aside>
</main>
<a href="https://google.com"><image src="chr.webp" width =200</a>
<a href ="https://google.com" target="main">GOOGLE</a>
<ul>
<li>Ahsan</li>
<li>SPN</li>
<li>PRo</li>
</ul>
<ol>
<li>Ahsan</li>
<li>SPN</li>
<li>PRo</li>
</ol>
<style>
table, th, td {
border:1px solid red;
}
</style>
<table style="width:80%">
<tr>
<th>Name</th>
<th>Course</th>
<th>university Roll no</th>
</tr>
<tr>
<th>Mohd Ahsan</th>
<th>B.tech Cs</th>
<th>2115000619</th>
</tr>
<tr>
<th>Mohd Ahsan</th>
<th>B.tech Cs</th>
<th>2115000619</th>
</tr>
<tr>
<th>Mohd Ahsan</th>
<th>B.tech Cs</th>
<th>2115000619</th>
</tr>
</table>
<form action="/action.php">
<input type="text" placeholder="username">
<br>
<input type="password" placeholder="password">
<br>
<!-- radio buttons -->
<input type="radio" value="b.tech" name="course">b.tech
<br>
<br>
<input type="radio" value="m.tech" name="course">m.tech
<br>
<br>
<!-- radio buttons while clicking on their text area -->
<label for="101">
<input type="radio" value="b.tech" name="course" id="101">b.tech
<br>
<br>
<label for="102">
<input type="radio" value="m.tech" name="course" id="102">m.tech
</label>
</label>
<br>
<br>
<label for="103">
<input type="checkbox" value="COMPUTER ARCHITECTURE" name="course" id="103">COMPUTER ARCHITECTURE
</label>
<br>
<LABEL FOR="104">
<INPUT type="checkbox" value="OPERATING SYSTEM" name="course" id="104">OPERATING SYSTEM
</LABEL>
<br>
<label for="105">
<input type="checkbox" value="ENGLISH PROFF" name="course" id="105">ENGLISH PROFF
</label>
<br>
<!-- feedback -->
<textarea name="feedback">feedback</textarea>
<!-- select tag -->
<select name="city" id="city">
<option value="delhi">delhi</option>
<option value="goa">goa</option>
<option value="mumbai">mumbai</option>
</select>
<!-- iframe tag -->
<!-- website inside website -->
</body>
</html>