Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Kweshuu authored Dec 17, 2023
1 parent 453486d commit 8699040
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
25 changes: 25 additions & 0 deletions cheesepage.html
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>
26 changes: 26 additions & 0 deletions think2.html
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>

0 comments on commit 8699040

Please sign in to comment.