Skip to content

Commit

Permalink
1: create a structure and nav-logo
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinNguyen2909 committed May 9, 2019
1 parent cea091c commit b5ba126
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
24 changes: 24 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,31 @@
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->

<nav class="navbar-nav navbar-light bg-light">
<div class="container">
<a href="#" class="navbar-brand">This is Logo</a>
</div>
</nav>
<header class="">
<div class="container">

</div>
</header>
<section class="environment">
<div class="container">

</div>
</section>
<section class="employees">
<div class="container">

</div>
</section>
<footer class="">
<div class="container">

</div>
</footer>

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
Expand Down
38 changes: 38 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
}

nav {
background-color: ;
min-height: ;
color: white;
}

header {
background-color: white;
min-height: 400px;
}

.environment {
background-color: black;
min-height: 300px;
color: white;
}

.employees {
background-color: white;
min-height: 300px;
}

footer {
background-color: black;
min-height: 100px;
color: white;
}

0 comments on commit b5ba126

Please sign in to comment.