-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
33 lines (32 loc) · 1 KB
/
page2.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>CSS Tutorial</title>
<link rel="stylesheet" href="css/styles.css"/>
</head>
<body>
<h1 class="new-color"
id="the-one">Page 2
</h1>
<p class="new-color">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Suscipit
reiciedis reprehenderit voluptatum ut aspernatur maiores
cupiditate
adipisci, temporibus deserunt cumque esse blanditiis eius,
odio earum
quia, deleniti laborum tempore minima.
</p>
<h1>Another H1 heading</h1>
<section class="standard-box box">
<p>Standard Box Model</p>
</section>
<section class="border-box box">
<p>Border Box Model</p>
</section>
<a href="page2.html">Page 2</a>
</body>
</html>