-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday1.html
78 lines (58 loc) · 2.59 KB
/
day1.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
<!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>
<h1 style="color: peru; background-color: brown; font-family: 'Times New Roman', Times, serif;">Racheal Ben</h1>
<h2>Racheal Ben</h2>
<h3>Racheal Ben</h3>
<h4>Racheal Ben</h4>
<h5>Racheal Ben</h5>
<h6>Racheal Ben</h6>
<p>My Name is Racheal</p>
<div style="background-color: bisque;">
<h1 style="color: peru; background-color: brown; font-family: 'Times New Roman', Times, serif;">Racheal Ben</h1>
<a href="https://www.itv.com/" target="_blank">ItvX Website</a>
<a href="https://www.prettylittlething.com/" target="_blank">PLT Website</a>
<a href="https://www.bbc.co.uk/news" target="_blank">BBC</a>
</div>
<div>
<img src="/HTML/roast-goose-gaf95d7d22_1280.jpg" alt="roast dinner">
<iframe width="560" height="315"
src="https://www.youtube.com/embed/s9Ha3cKVo4E?start=313" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2484.441687028751!2d0.28135229999999994!3d51.486761699999995!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47d8b1ad9c9c6957%3A0xb753c3bf35b8db33!2sCOCO%20ASIA!5e0!3m2!1sen!2suk!4v1690289897012!5m2!1sen!2suk" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<!---iframe task
https://www.videezy.com/
https://www.videvo.net/-->
<iframe width="500" height="315" src="https://www.shutterstock.com/video/clip-1057452598-close-shot-table-covered-healthy-vegan-mediterranean" title="Dining Video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<table>
<tr>
<th>This is my first table header</th>
<th>This is my second table header</th>
<th>This is my third table header</th>
<th>This is my fourth table header</th>
</tr>
<tr>
<td>House</td>
<td>Clothes</td>
<td>Car</td>
<td>Money</td>
<td>Food</td>
</tr>
<style>table, th, td {
border: 1px solid black;}</style>
</table>
<!--Lists-->
<!--ordered with numbers<ol> or unordered, bulleted<ul>-->
<ol>
<li>English</li>
<li>Maths</li>
<li>Physics</li>
<li>ICT</li>
<li>Drama</li>
</ol>
</html>