-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonlinecourse.html
More file actions
63 lines (59 loc) · 1.9 KB
/
onlinecourse.html
File metadata and controls
63 lines (59 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title style="color: blueviolet;">Document</title>
</head>
<body>
<div id="grid">
<div class="grid-item">1</div>
<div class="grid-item">2</div>
<div class="grid-item">3</div>
<div class="grid-item">4</div>
<div class="grid-item">5</div>
<div class="grid-item">6</div>
<div class="grid-item">7</div>
<div class="grid-item">8</div>
</div>
<div id="containers">
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
<div>hello jsut for flex</div>
hello ,world
</div>
<!-- ordered list item -->
<h1 >welcome to new city</h1>
<ol>
<li>thia is line</li>
<li>thia is line</li>
<ul>
<li>this is for checking</li>
</ul>
<li>thia is line</li>
</ol>
<!-- unordered list -->
<ul>
<li id="foo" >this is line</li>
<li>this is line</li>
<li class="aa">this is line</li>
</ul>
<a href="https://www.youtube.com/watch?v=M5VVdb-_mAE&ab_channel=OneForAll">click me</a>
<!-- input taken from user -->
<input name="usama" list="usama" placeholder="usamalist">
<datalist id="usama">
<option value="afghansitan"></option>
</datalist>
</body>
</html>