Merge pull request #7 from jpez-development/legal_pages

added construction page
This commit is contained in:
Joshua Perry 2022-04-14 18:15:15 +01:00 committed by GitHub
commit eeadfe41b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 80 additions and 12 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

View File

@ -87,10 +87,10 @@
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
<a href="site/construction.html"><h1>Terms</h1></a>
<a href="site/construction.html"><h1>Privacy</h1></a>
</footer>
</body>
</html>

View File

@ -66,10 +66,10 @@
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
<a href="site/construction.html"><h1>Terms</h1></a>
<a href="site/construction.html"><h1>Privacy</h1></a>
</footer>
</body>
</html>

View File

@ -138,10 +138,10 @@
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
<a href="site/construction.html"><h1>Terms</h1></a>
<a href="site/construction.html"><h1>Privacy</h1></a>
</footer>
</body>
</html>

View File

@ -58,10 +58,10 @@
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/report.html"><h1>Site Report</h1></a>
<a href="site/.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="legal/terms.html"><h1>Terms</h1></a>
<a href="legal/privacy.html"><h1>Privacy</h1></a>
<a href="site/construction.html"><h1>Terms</h1></a>
<a href="site/construction.html"><h1>Privacy</h1></a>
</footer>
</body>
</html>

16
site/construction.css Normal file
View File

@ -0,0 +1,16 @@
main {
min-height: 50em;
}
img {
max-height: 30em;
border-radius: 5em;
}
.notice {
background-color: #14213d;
max-width: 20em;
padding: 2em;
margin-left: 45em;
border-radius: 5em;
}

52
site/construction.html Normal file
View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Portfolio showcasing projects worked on by Joshua Perry">
<meta name="keywords" content="HTML, CSS, JavaScript, jpez, jpez-development, home, bio, portfolio">
<meta name="author" content="Joshua Perry">
<base href="../">
<title>Construction: J-Pez Development</title>
<link rel="icon" type="image/svg+xml" href="assets/images/favicon.svg">
<link rel="stylesheet" href="style/main.css" media = "screen">
<link rel="stylesheet" href="site/construction.css" media="screen">
<link rel="stylesheet" href="style/mobile.css" media ="screen and (max-width:800px)">
</head>
<body id="clicked">
<nav class="navigation">
<a class="hidenav" href="home/index.html#"> X</a>
<a class="nav link" id="home" href="home/index.html"><h2>J-Pez Development</h2></a>
<a class="nav link" id="port" href="portfolio/portfolio.html"><h2>Portfolio</h2></a>
<a class="nav link" id="blog" href="blog/blog.html"><h2>Blog</h2></a>
<a class="nav link" id="contact" href="contact/contact.html"><h2>Contact</h2></a>
<a class="arrow"></a>
</nav>
<main>
<section class="notice">
<img src="assets/images/construction.jpg" alt="Image of arbitrary source code"/>
<h1>This Page is currently Under Construction!</h1>
</section>
</main>
<footer>
<a href="home/index.html">
<img src="assets/images/favicon.svg" id="footer_logo" alt="Logo"/>
<p>&copy;Joshua Perry 2022</p>
</a>
<a href="blog/blog.html"><h1>Blog</h1></a>
<a href="site/.html"><h1>Site Report</h1></a>
<a href="site/map.html"><h1>Site Map</h1></a>
<a href="site/construction.html"><h1>Terms</h1></a>
<a href="site/construction.html"><h1>Privacy</h1></a>
</footer>
</body>
</html>