Skip to content

Commit 08b9890

Browse files
Corydon BaylorCorydon Baylor
Corydon Baylor
authored and
Corydon Baylor
committed
added all html and css
1 parent 7a97dc5 commit 08b9890

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<html>
2+
3+
<head>
4+
<title>Example</title>
5+
<link rel="stylesheet" href="styles/style.css">
6+
</head>
7+
8+
<body class="page-style">
9+
<div>
10+
<a href="pages/second.html">Link to your second page</a>
11+
<h2>Create Your Static Website</h2>
12+
<p>Here is the content of your site.</p>
13+
</div>
14+
</body>
15+
16+
</html>

pages/second.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<html>
2+
3+
<head>
4+
<title>Second Page</title>
5+
<link rel="stylesheet" href="styles/style.css">
6+
</head>
7+
8+
<body class="page-style">
9+
<div>
10+
<a href="../index.html">Link to your homepage</a>
11+
<h2>Now you have two pages!</h2>
12+
<p>Isn't that nice</p>
13+
</div>
14+
</body>
15+
16+
</html>

styles/style.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.page-style {
2+
background-color:#f9fbfd;
3+
color:#2F4F4F;
4+
}
5+

0 commit comments

Comments
 (0)