-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
76 lines (58 loc) · 2.11 KB
/
Copy pathtest.html
File metadata and controls
76 lines (58 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Nansel Rim">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning CSS</title>
<link rel="stylesheet" href="test.css">
</head>
<body>
<header>
<h1>CSS Selectors</h1>
</header>
<br>
<main>
<article class="list_styling">
<h1>CSS Lists</h1>
<br>
<h2>Ordered List</h2>
<ol>
<li>Step One</li>
<li>Step Two</li>
<li>Step Three</li>
</ol>
<br>
<h2>Unordered List</h2>
<br>
<ul>
<li>Step One</li>
<li>Step two</li>
<li>Step Three</li>
</ul>
</article>
<article class="typography">
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consectetur expedita placeat ratione labore asperiores amet soluta inventore. Libero nisi at, sint magni incidunt saepe, debitis asperiores veniam rem animi nam?
</p>
<p>welcome to my page about <a href="https://fonts.google.com/">cool google fonts</a></p>
<p>i created page 1 with info about <a href="#guitars">guitars</a></p>
</article>
<article class="contener">
<h2>Article 1</h2>
<p class="one"><span class="highlight">Lorem ipsum</span> dolor sit amet consectetur adipisicing elit. Hic quos ipsam deserunt nulla non cupiditate numquam nostrum quae?</p>
<div class="circle"></div>
</article>
<br>
<article class="contener">
<h2>Article 2</h2>
<p class="two">Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime laborum, ad ipsam accusantium rem recusandae. Id sed numquam quas quae <span class="highlight">aspernatur</span>, accusamus consectetur?</p>
</article>
<br>
<article class="contener">
<h2>Article 3</h2>
<p class="three">Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni sapiente qui assumenda ratione unde asperiores architecto placeat provident <span class="highlight">nemo dolor</span> ex perferendis?</p>
</article>
</main>
</body>
</html>