-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample1.html
56 lines (54 loc) · 1.59 KB
/
sample1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p style="background-image: omg.jpg;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Sit voluptatum sequi illo accusamus iusto repellat tempora aperiam repellendus dolor, commodi temporibus modi quia, similique ratione est accusantium nisi, rem eius!</p>
<b><strong>T</strong><sub>e</sub><u>x</u>t</b>
<img src="https://in.pinterest.com/pin/4785143348160849/" alt="">
<picture>
<source media="(min-width: 650px)" srcset="https://in.pinterest.com/pin/4785143348160849/">
<img src="https://in.pinterest.com/pin/4785143348160849/" alt="">
</picture>
<figure></figure>
<table>
<th>Time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<tr>
<td>8:00-9:00</td>
<td>Math</td>
<td>Science</td>
<td>English</td>
<td>History</td>
<td>Math</td>
</tr>
<tr>
<td>9:00-10:00</td>
<td>Science</td>
<td>English</td>
<td>History</td>
<td>Math</td>
<td>Science</td>
</tr>
</table>
<table>
<th>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</th>
</table>
</body>
</html>