-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPracticeHTML.html
More file actions
86 lines (85 loc) · 3.81 KB
/
PracticeHTML.html
File metadata and controls
86 lines (85 loc) · 3.81 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>Practice HTML 2.1</title>
</head>
<body>
<p>Table of Contents
<ul>
<li><a href="#Q1">Q1. Your Name</li></a></li>
<li><a href="#Q2">Q2. Up and Bottom</a></li>
<li><a href="#Q3">Q3. Online Shopping</a></li>
<li><a href="#Q4">Q4. Puzzle<a></a></li>
</ul>
</p>
<hr id="Q1" />
<!-- Your name as heading per letter
Q1. Print your name to the screen with every letter being a different heading size.
-->
<h6>E</h6>
<h5>R</h5>
<h4>I</h4>
<h3>C</h3>
<p><a href="#top">Back to Table of Contents</a></p>
<hr id="Q2" />
<!--Up and bottom target/anchor link
Q2. Create a page with a link at the top of it that when clicked will jump all the way to the bottom of the page. At the bottom of the page there should be a link to jump back to the top of the page.
-->
<p>Some top content...<br /><br />
<a href="#bottom">Go to Bottom</a> of this content.
</p>
<p>What is Lorem Ipsum?<br /><br />
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<p id="bottom">Why do we use it?<br /><br />
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<br />
<a href="#top">Go to Top</a>
</p>
<p><a href="#top">Back to Table of Contents</a></p>
<hr id="Q3" />
<!--Online Shopping
Q3. Display 5 images/icons that when clicked will link to various online shopping platforms(Shopee, Lazada, Shein, Amazon, eBay, etc).
-->
<p>
<a target="_blank" href="https://shopee.ph/">
<img width="200" height="100" src="https://logolook.net/wp-content/uploads/2021/11/Shopee-Logo.png" alt="Shopee" />
</a>
<br />
<a target="_blank" href="https://www.lazada.com.ph">
<img width="200" height="100" src="https://laz-img-cdn.alicdn.com/images/ims-web/TB19SB7aMFY.1VjSZFnXXcFHXXa.png" alt="Lazada" />
</a>
<br />
<a target="_blank" href="https://ph.shein.com/">
<img width="200" height="100" src="https://1000logos.net/wp-content/uploads/2021/05/Shein-logo.png" alt="Shein" />
</a>
<br />
<a target="_blank" href="https://www.amazon.com/">
<img width="200" height="100" src="https://img.etimg.com/thumb/msid-59738992,width-640,resizemode-4,imgsize-25499/amazon.jpg" alt="Amazon" />
</a>
<br />
<a target="_blank" href="https://www.ebay.com/">
<img width="200" height="100" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/EBay_logo.svg/2560px-EBay_logo.svg.png" alt="eBay" />
</a>
</p>
<p><a href="#top">Back to Table of Contents</a></p>
<hr id="Q4" />
<!--Q4. Puzzle-->
<table border="5px">
<tr>
<th colspan="3" align="center">Top</th>
</tr>
<tr>
<td rowspan="2">way left</td>
<td>middle up</td>
<td rowspan="2">way right</td>
</tr>
<tr>
<td>middle down</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
</table>
<p><a href="#top">Back to Table of Contents</a></p>
</body>
</html>