-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (59 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
65 lines (59 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
table td tr{
border: 100px;
border-radius: 10px;
border-color: rgb(255, 156, 28);
}
</style>
My Demo
</head>
<body>
<h1>Hello Headings</h1>
<h2>Hello Headings</h2>
<h3>Hello Headings</h3>
<h4>Hello Headings</h4>
<h5>Hello Headings</h5>
<h6>Hello Headings</h6>
<p>Hello Headings</p>
<ul>
<li>Food items</li>
<li>Milk</li>
<li>Banana</li>
</ul>
<ol style="list-style-type:square;">
<li>Food items</li>
<li>Milk</li>
<li>Banana</li>
</ol>
<img src="image.jpg" width="100px" height="100px">
<input type="text" name="fname" value="test">
<table>
<tr>
<td>Name</td>
<td>Class</td>
<td>RollNo</td>
</tr>
<tr>
<td>ABC</td>
<td>XYZ</td>
<td>145</td>
</tr>
</table>
<form>
<label>First name</label>
<input type="text" name="fname" value="">
<label>profile pic</label>
<input type="file">
</form>
<p>Hello I am <mark>ABC</mark>. Nice to <strong>meet</strong> you</p>
<p>x<sup>2</sup></p>
<p>log2<sub>10</sub></p>
<p>Hello <del>deleted text</del> </p>
<h1 style="color:red;">Inline</h1>
<p>Assignment2:background blue, height:3px 27-09-22</p>
<p>smishranitrr@gmail.com</p>
</body>
</html>