Skip to content

Commit 4621d40

Browse files
committed
testing
1 parent 7cb70f4 commit 4621d40

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ <h1>CSS and HTML Testing Site</h1>
99
</div>
1010
<div class="bodytext">
1111
<p>This is a test paragraph for body text. Lorem ipsum etc.</p>
12-
<a href="www.google.com" class="button">+1</a>
12+
<a href="subpage.html" class="button">Subpage</a>
1313
</div>
1414
</body>
1515
</html>

stylesheet.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
body {
22
background-color: antiquewhite;
3-
font-family: "FF Tisa Pro", "Palatino Linotype", "Book Antiqua", Palatino, serif;
3+
font-family: "Helvetica", sans-serif;
44

55
}
66
div.topheader {

subpage.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" type="text/css" href="stylesheet.css">
5+
</head>
6+
<body>
7+
<div class="topheader">
8+
<h1>Subpage</h1>
9+
</div>
10+
<div class="bodytext">
11+
<p>This is a sub page</p>
12+
</div>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)