-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro-CSS.html
More file actions
37 lines (33 loc) · 1015 Bytes
/
intro-CSS.html
File metadata and controls
37 lines (33 loc) · 1015 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Intro to CSS</title>
<link rel="stylesheet" href="css/intro-to-CSS.css">
<style>
</style>
</head>
<body>
<header>
<h1 class="fancy-header"> My Basic Website</h1>
<nav class="article-background">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section class="article-background">
<article>
<h2>Article Title</h2>
<p>This is a sample paragraph for our article. It contains text, and can be sysled using CSS.
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut deserunt id in itaque, minima quidem
recusandae voluptatibus. Consectetur deleniti, esse facilis fuga ipsam iure pariatur quae, qui quidem
recusandae velit.
</p>
</article>
</section>
</body>
</html>