Skip to content

Instantly share code, notes, and snippets.

@mavina15
Created January 27, 2019 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mavina15/ef8a4a5d82dd59cc5c90e51c7147afd6 to your computer and use it in GitHub Desktop.
Save mavina15/ef8a4a5d82dd59cc5c90e51c7147afd6 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>DREAMSources</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container">
<div id = "header">
<h1>DREAMSources</h1>
</div>
<div id ="content">
<div id ="nav">
<ul>
<li><a class href="legal.html">Legal</li>
<li><a class href="health.html">Health</li>
<li><a class href="educational.html">Educational</li>
<li><a class href="lgbtq.html">LGBTQ</li>
</ul>
</div>
<div id="main">
<h2>Given our political climate, living as an undocumented person...</h2>
<p>Below is our interactive map...</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3310064.7091220287!2d-122.5886763368118!3d35.88613390165403!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80c2c77707885bef%3A0xd05c4833d8dcc4f!2sCARECEN!5e0!3m2!1sen!2sus!4v1548582488789" width= 90% height= 75% frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
<div id ="footer">
Copyright &Copy; 2019 WomxnHacks
</div>
</div>
</body>
</html>
body{
background-color: #EEE;
font-size: 120%;
font-family: Helvetica; Arial; sans-serif; Georgia;
margin: 0;
}
a{
text-decoration: none;
color: red;
}
h1, h2, h3{
margin: 0;
}
#container{
background-color: white;
width:85%;
margin-left: auto;
margin-right: auto;
}
#header {
background-color: #66CCFF;
color: white;
text-align: center;
padding: 30px;
font-family: Georgia;
}
#content {
height: 1000px;
padding: 30px;
margin-left: 3%
margin-right:3%;
}
#nav {
width: 20%;
float: left;
}
#nav ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 20%;
background-color:;
height: 100%;
position: fixed;
overflow: auto;
font-size: 1em;
}
li a {
display: block;
color: #000;
padding: 2%;
text-decoration: none;
}
li a.active {
background-color: #4CAF50;
color: white;
}
li a:hover:not(.active) {
background-color: #555;
color: white;
}
#main{
width: 75%;
float: right;
height: 100%;
text-align: center;
}
#footer {
clear:both;
padding:10px;
background-color: #999999;
color:white;
text-align: right;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment