Skip to content

Commit

Permalink
Centered a div???? Added pages
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoxeyumich committed Sep 20, 2024
1 parent ab77b4d commit 914933d
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 5 deletions.
2 changes: 1 addition & 1 deletion students/nmoxey/game1.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<title>Document</title>
</head>
<body>
<h1>Game goes here</h1>
<h1>Game 1 goes here</h1>
</body>
</html>
11 changes: 11 additions & 0 deletions students/nmoxey/game2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Game 2 goes here</h1>
</body>
</html>
Empty file added students/nmoxey/game2.js
Empty file.
11 changes: 11 additions & 0 deletions students/nmoxey/game3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Game 3 goes here</h1>
</body>
</html>
Empty file added students/nmoxey/game3.js
Empty file.
10 changes: 6 additions & 4 deletions students/nmoxey/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@
<title>Nate's Landing Page</title>
</head>
<body>
<div class="PageHeading">
<h1>mrbrbrn.com</h1>
<p>Web Development Team Project of Nate Moxey</p>
<p>What's up World?</p>
<div class="Centered">
<h1 class="PageHeading">mrbrbrn.com</h1>
<p class="PageHeading">Web Development Team Project of Nate Moxey</p>
<p class="PageHeading">What's up World?</p>
</div>
<img src="BOBbarb.png" alt="barbarian">
<div class="Game Links">
<a href="https://michiganhackers.github.io/webteamf2024/students/nmoxey/game1.html">Game 1</a>
<a href="https://michiganhackers.github.io/webteamf2024/students/nmoxey/game2.html">Game 2</a>
<a href="https://michiganhackers.github.io/webteamf2024/students/nmoxey/game3.html">Game 3</a>
</div>
</body>
</html>
5 changes: 5 additions & 0 deletions students/nmoxey/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.Centered {
max-width: fit-content;
margin-left: auto;
margin-right: auto;
}
.PageHeading {
color: darkslategrey;
font-family: fantasy;
Expand Down

0 comments on commit 914933d

Please sign in to comment.