-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
aleph-naught2tog
committed
Jan 5, 2019
1 parent
a5673df
commit dab1361
Showing
4 changed files
with
96 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" | ||
content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" | ||
content="ie=edge"> | ||
<title>About</title> | ||
<link href="css/index.css" | ||
type="text/css" | ||
rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<main> | ||
<header> | ||
<h1>About</h1> | ||
|
||
<nav> | ||
<a href="index.html">Home</a> | ||
</nav> | ||
</header> | ||
|
||
<section> | ||
<p> | ||
Nothing to see here, sorry! | ||
</p> | ||
<p> | ||
<small> | ||
(This page won't turn blue; there's no <code>script</code> tag. But | ||
these paragraphs <i>will</i> have a light-yellow background and a | ||
dotted-line border, because the CSS file is linked in the <code>head</code> | ||
tag!) | ||
</small> | ||
</p> | ||
</section> | ||
</main> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
* { | ||
font-family: sans-serif; | ||
padding: 0.25rem; | ||
} | ||
|
||
p { | ||
background-color: lemonchiffon; | ||
border: dashed 1px black; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters