Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Navmenu/footer #12

Merged
merged 2 commits into from
Mar 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 132 additions & 2 deletions tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,138 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Web Developers & Friends</title>
<style>
.headermaincontainer{
display: flex;
background-color: grey;
flex-direction: row;
font-family: Arial;

}
.headerparagraphformat{
margin-left: 15px;
}
.linksformat{
background-color: gray;
padding-left: 15px;
padding-right: 15px;
color: white;
padding-top: 15px;
padding-bottom: 15px;
/*Idk why I can't control the height but meh the height is ok for now I
think it has to do with the paragraph soooo yeah.... =)*/
}
.linksformat:hover{
background-color: gray;
color: white;
padding-top: 15px;
padding-bottom: 15px;
text-decoration: underline;
cursor: pointer;
}
.hyperlinkreformat{
background-color: gray;
padding-left: 35px;
padding-right: 35px;
color: white;
padding-top: 0px;
padding-bottom: 0px;
text-decoration: none;
font-size: 20px;
}
.footermainholder{
display: flex;
flex-direction: row;
background-color: grey;
padding-left: 45px;

}
.individualcolumnholderthingies{
display: flex;
flex-direction: column;
justify-content: center;
padding-right: 15px;
padding-left: 15px;
color: white;
font-family: Arial;
padding-bottom: 15px;
padding-top: 10px;
}
.footerlinks{
text-decoration: none;
color: white;
padding-bottom: 30px;
padding-top: 10px;
}
.footerlinks:hover{
text-decoration: underline;
}
</style>
</head>
<body>
nothing is here
<body style="margin: 0px;">
<header>
<nav>
<div>
<div class="headermaincontainer">
<div class="linksformat">
<!--<p class="headerparagraphformat">Home</p>-->
<a href="" class="hyperlinkreformat">Home</a>
</div>
<div class="linksformat">
<!--<p class="headerparagraphformat">Our Discord</p>-->
<a href="" class="hyperlinkreformat">Our Discord</a>
</div>
<div class="linksformat">
<!--<p class="headerparagraphformat">HTML Docs</p>-->
<a href="" class="hyperlinkreformat">HTML Docs</a>
</div>
<div class="linksformat">
<!--<p class="headerparagraphformat">CSS Docs</p>-->
<a href="" class="hyperlinkreformat">CSS Docs</a>
</div>
<div class="linksformat">
<!--<p class="headerparagraphformat">JS Docs</p>-->
<a href="" class="hyperlinkreformat">JS Docs</a>
</div>
</div>
</div>
</nav>
</header>
<main>
<br>
<br>
</main>
<footer>
<div class="footermainholder">
<div class="individualcolumnholderthingies">
<h3>About Us</h3>
<a href="" class="footerlinks">Our Discord</a>
<a href="" class="footerlinks">Our Mission Statement</a>
<!--Note: Put something instead of mission statement-->
</div>
<div class="individualcolumnholderthingies">
<h3>HTML Docs</h3>
<a href="" class="footerlinks">HTML Tutorials</a>
<a href="" class="footerlinks">HTML References</a>
</div>
<div class="individualcolumnholderthingies">
<h3>CSS Docs</h3>
<a href="" class="footerlinks">CSS Tutorials</a>
<a href="" class="footerlinks">CSS References</a>
</div>
<div class="individualcolumnholderthingies">
<h3>JavaScript Docs</h3>
<a href="" class="footerlinks">JavaScript Tutorials</a>
<a href="" class="footerlinks">JavaScript References</a>
</div>
<div class="individualcolumnholderthingies">
<h3>Ads</h3>
<a href="" class="footerlinks">Why ads?</a>
<a href="" class="footerlinks">Opt-out of ads</a>
<!--Note: The ads topic is up for discussion-->
</div>

</div>
</footer>
</body>
</html>