-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (91 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Second Class Lecture</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<figure>
<img src="1.jpg">
<img src="1.jpg">
<img src="1.jpg">
</figure>
<div>
<h1>Heading</h1>
<p class="order1">Some <span>inline</span> text</p>
<p class="order2">Some Text</p>
</div>
<br>
<section style="border:2px solid">
Some Text
</section>
<!-- Form Area and input attributes -->
<br>
<form class="" action="" method="">
<input type="text" value="First Name">
<input type="text" value="Last Name">
<label for="Enail">Email:</label>
<input type="text" value="Email">
<input type="submit" value="Submit">
</form>
<br>
<a href="#">Click Me!</a>
<button type="button" name="button"> <a href="#">Click me!</a></button>
<!-- Text Area -->
<textarea name="name" rows="15" cols="80">
<br>
<form class="" action="" method="">
<input type="text" value="First Name">
<input type="text" value="Last Name">
<label for="Enail">Email:</label>
<input type="text" value="Email">
<input type="submit" value="Submit">
</form>
<br>
<a href="#" style="border:2px solid red; padding: 10px;">Click Me!</a>
<button type="button" name="button"> <a href="#">Click me!</a></button>
</textarea>
<!-- Lists -->
<ul style="list-style-type:circle;">
<li>Coffee</li>
<li>Snack</li>
</ul>
<ol start="2">
<li>Apple</li>
<li>Banana</li>
<li>Grapes</li>
</ol>
<!-- table -->
<table border=2>
<tr>
<th width=100>A</th>
<th width=100>B</th>
<th width=100>C</th>
<th width=100>D</th>
</tr>
<tr>
<td>Data 1</td>
<td bgcolor="redyellow">Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
</tr>
<tr>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
</table>
<!-- Image -->
<img src="" alt="" title="">
<!-- for local videos -->
<video src="videofile.ogg" autoplay poster="posterimage.jpg">
</video>
<!-- for embeded online videos -->
<iframe width="560" height="315" src="https://www.youtube.com/embed/Z_1L5udig1A" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!-- for audio sounds in local folders -->
<audio src="">
</audio>
</html>