Skip to content

Commit

Permalink
terrible styling but whatever
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderG2 committed Aug 19, 2023
1 parent 368e32c commit bb2593e
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# iowexpedition.github.io
# iowexpedition.github.io

website for the isle of wight expedition that we did 17/8/23
18 changes: 16 additions & 2 deletions xander/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,21 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<title>Isle of Wight Expedition</title>
<link rel="stylesheet" href="style.css" />
</head>
<body></body>
<body>
<div class="content">
<div class="image-title-container">
<img src="../img/panorama.PNG" width="100%" height="40%" />
<div class="title">
<h1>Exploration expedition exhibition</h1>
</div>
</div>
<p>
On Thursday 17th August 2023, we set out on an expedition for Scouts.
The route was [insert route here], and we went on it.
</p>
</div>
</body>
</html>
28 changes: 28 additions & 0 deletions xander/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
html body {
margin: 0;
padding: 0;
min-height: 100vh;
height: 100vh;
}

body {
background-color: rgb(163, 248, 184);
}

.title {
color: rgb(231, 231, 231);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24px;
font-weight: bold;
color: white;
background-color: rgba(0, 0, 0, 0.7);
padding: 10px 20px;
border-radius: 5px;
}

.image-title-container {
display: inline-block;
}
9 changes: 9 additions & 0 deletions zack/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!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></body>
</html>

0 comments on commit bb2593e

Please sign in to comment.