Skip to content

Commit

Permalink
Merge pull request #1 from whytheq/ghpage
Browse files Browse the repository at this point in the history
Ghpage
  • Loading branch information
whytheq authored Sep 10, 2023
2 parents d077c89 + e23adbd commit f8a64dd
Show file tree
Hide file tree
Showing 8 changed files with 98 additions and 2 deletions.
2 changes: 0 additions & 2 deletions README.md

This file was deleted.

Binary file added assets/pixels.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* This is the main stylesheet for the application. */
body {
background-image: url("../assets/pixels.jpg");
background-repeat: no-repeat;
background-size: cover;
text-align: center;
font-size: 60px;
font-weight: 700;
color: #fff;
font-family: "Open Sans", sans-serif;
}
8 changes: 8 additions & 0 deletions css/style_samples.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
h1 {
font-size: 60px;
font-weight: 700;
color: #fff;
text-shadow: 0 0 10px #000;
margin: 0;
padding: 0;
}
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Code Samples</title>
<meta
http-equiv="cache-control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<link rel="stylesheet" href="css/style.css" />
</head>

<body>
<h1>Code Samples</h1>
<p>Things I've found about the following technology:</p>
<a href="/samples/html.html" target="_blank">HTML</a>
<a href="/samples/css.html" target="_blank">CSS</a>
<a href="/samples/powershell.html" target="_blank">Powershell</a>
</body>
</html>
19 changes: 19 additions & 0 deletions samples/css.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>CSS Samples</title>
<meta
http-equiv="cache-control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<link rel="stylesheet" href="../css/style.css" />
<link rel="stylesheet" href="../css/style_samples.css" />
</head>

<body>
<h1>CSS Samples</h1>
</body>
</html>
19 changes: 19 additions & 0 deletions samples/html.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>HTML Samples</title>
<meta
http-equiv="cache-control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<link rel="stylesheet" href="../css/style.css" />
<link rel="stylesheet" href="../css/style_samples.css" />
</head>

<body>
<h1>HTML Samples</h1>
</body>
</html>
19 changes: 19 additions & 0 deletions samples/powershell.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Posh Samples</title>
<meta
http-equiv="cache-control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<link rel="stylesheet" href="../css/style.css" />
<link rel="stylesheet" href="../css/style_samples.css" />
</head>

<body>
<h1>Posh Samples</h1>
</body>
</html>

0 comments on commit f8a64dd

Please sign in to comment.