-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
44 lines (44 loc) · 1.56 KB
/
test.html
File metadata and controls
44 lines (44 loc) · 1.56 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
<!DOCTYPE html> <!-- This is a declaration -->
<html> <!-- This is an opening tag or archor -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>This is my test page</title><!-- this is an element -->
</head>
<body><!-- everything you want people to see -->
<header><!-- This header is different from the HEAD above, This will hold the menu -->
<img src="images\logo.png">
<nav>
<a href="#">Home</a>
<a href="#">What we do</a>
<a href="#">Who we are</a>
<a href="#">Contact us here</a>
</nav>
</header>
<h1>This is for Rose and Carringtone</h1>
<p>All this is in the body that is why you are able to see it, We can also add images, links and tables uder here to just show them off</p>
<img src="images\1.jpg"><br>
<a href="theodinproject.com">This link will take you to the oding project website</a>
<h4>This is my <i>fruit</i> shopping list</h4>
<ul>
<li> Mangoes</li>
<li>Watermelons</li>
<li>Lemons</li>
<li>Oranges</li>
</ul>
<h4>This is my other Food shopping list</h4>
<ol>
<li>Pizza</li>
<li>Chicken Shawarma</li>
<li>Hungry Lion Chicken</li>
<li>KFC Dunked wings</li>
</ol>
<footer>
<P>This is a copyright of us.com</P>
<p>You can follow us on our socials by liking and sharing</p>
<a href="facebook.com"><img src="images\facebook logo.png"></a>
<a href="twitter.com"><img src="images\twiiter logo.png"></a>
<p><i>Everythint is possible y'all</i></p>
</footer>
</body>
</html><!-- html closing tag -->