-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
51 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Cheese Page</title> | ||
<style> | ||
body { | ||
background-color: #000000; /* Set background color to pure black */ | ||
color: #ffffff; | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 20px; /* Adding some padding for better readability */ | ||
text-align: center; /* Center text */ | ||
} | ||
|
||
h1 { | ||
font-size: 2em; /* Set font size to 2em */ | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Cheese coming soon</h1> | ||
</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,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Dec 17, 2023 pt 2</title> | ||
<style> | ||
body { | ||
background-color: #000000; /* Set background color to pure black */ | ||
color: #ffffff; | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 20px; /* Adding some padding for better readability */ | ||
} | ||
|
||
p { | ||
font-size: 120%; /* Set font size to 120% */ | ||
line-height: 1.5; /* Set line height for better readability */ | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<p>Content for Dec 17, 2023 pt 2 goes here.</p> | ||
<a href="cheesepage.html">Fellas... cheese page</a> | ||
</body> | ||
</html> |