-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 2.46 KB
/
index.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
<DOCTYPE html>
<html>
<head>
<title>Learning HTML</title>
</head>
<body>
<nav>
<ul>
<li>
<a href="/learning-html/pages/contact.html">Contact Us!!!!</a>
<a href="https://www.github.com">GitHub</a>
<a href="/learning-html/">home</a>
<a href="/learning-html/about-us.html/">About Us</a>
<a href="https://www.google.com">Google</a>
</li>
</ul>
</nav>
<h1>This is a heading 1.</h1>
<h2>This is a heading 2.</h2>
<h3>This is a heading 3.</h3>
<h4>This is a heading 4.</h4>
<h5>This is a heading 5.</h5>
<h6>This is a heading 6.</h6>
<!-- Headings go from 1 to 6. Heading 7 doesn't exist -->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. </p>
<br />
<p> eligendi officiis animi culpa perferendis ex porro. Nostrum, quidem voluptatem quo voluptatibus vero atque ea blanditiis tempora laboriosam ex id et!</p>
<!-- the tag below is an example of a horintal rule -->
<hr>
<!-- Link to other pages -->
<!-- Add Images -->
<img src="images/Everyday-Heroes-2.jpg" alt="blue line hero flag">
<img src="logo.png" alt="everyday heroes pic">
<img src="images/baby-groot.jpg" alt="baby groot">
<div>this is inside a div</div>
<!-- Semantic organization -->
<nav>This is the navigation line</nav>
<header>This indicates the header portion of the page</header>
<main>This indicates the main portion of the page
<address>This is an address information</address>
<article>This is an articla.</article>
<aside>This is an aside.</aside>
<section>This is a section of the main</section>
</main>
<footer>This is the footer portion of the page</footer>
<!-- Making lists -->
<ol>
<li>Wake Up.</li>
<li>Brush teeth</li>
<li>Shower</li>
</ol>
<ul>
<li>Get Milk</li>
<li>Go on vacation</li>
<li>Shenanigans</li>
</ul>
</body>
</html>