-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
59 lines (54 loc) · 2.57 KB
/
Copy pathpage2.html
File metadata and controls
59 lines (54 loc) · 2.57 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content = "IE=edge">
<meta name = viewport content = "width=device-width initial-scale=1.0">
<link rel = "icon" type = "image/webp" href = "Images/PikachiuImage.webp">
<title>William's Intro To CSS part 5!</title>
<link rel = "stylesheet" href="style(index8).css">
</head>
<body>
<!--psuedo classes: keywords added to a selector-->
<a href="https://google.com" id="link">Google</a>
<hr>
<ul>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
<li class="list1">This is #</li>
</ul>
<hr>
<div id="greeting">Hover here
<p>Hello</p>
</div>
<!-- psuedo elements = keyword added after a selector that's used to style a specific part of an element
h1::first-letter{
}-->
<h1 id="psuedoheader">Hello</h1>
<p id="loremtext">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Cumque assumenda alias expedita incidunt a culpa consectetur, sint ipsa quaerat recusandae asperiores temporibus doloremque iure, placeat quod eos nulla tempore voluptatibus.</p>
<ul id="fruit">
<li class="list2" id="apple">apple</li>
<li class="list2" id="orange">orange</li>
<li class="list2" id="banana">banana</li>
</ul>
<!-- pagination = how a document is seperated into pages and given numbers-->
<h1 id="page1">This is page #2</h1>
<p id="paginationlorem">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Dolore laboriosam voluptates inventore veniam commodi quisquam autem in mollitia architecto corrupti eligendi numquam accusantium, quas et illo quo placeat ab totam!</p>
<div class="pagination">
<a href="Index8.html"><</a>
<a href="Index8.html">1</a>
<a class="active" href="page2.html">2</a>
<a href="page3.html">3</a>
<a href="page4.html">4</a>
<a href="page5.html">5</a>
<a href="page3.html">></a>
</div>
</body>
</html>