Skip to content
Open
Show file tree
Hide file tree
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
Binary file added images/beach.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/bird1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/bird2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/cactus.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/cow.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/nightbeach.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/oakleaves.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/snowcactus.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 51 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,59 @@
<body>
<header>
<nav>
<a class="orange" href="">Home</a>
<a class="blue" href="">About</a>
<a class="yellow" href="">Contact</a>
<a class="green" href="">Projects</a>
<h1>Kippy Hixson</h1>
<links>
<button><a href="index.html">HOME</a></button>
<button><a href="about.html">ABOUT</a></button>
<button><a href="contact.html">CONTACT</a></button>
<button><a href="projects.html">PROJECTS</a></button>
</links>
</nav>
</header>
</header>

<section class="top-section">
<button class="image-button">
<h1>Kippy Hixson</h1>
<a href="projects.html">My Portfolio</a>
</button>
</section>

<section>
<div class="row">
<div class="portfolio-element">
<img src="https://picsum.photos/300"/>
<p>Portfolio Piece</p>
</div>
<div class="portfolio-element">
<img src="https://picsum.photos/300"/>
<p>Portfolio Piece</p>
</div>
<div class="portfolio-element">
<img src="https://picsum.photos/300"/>
<p>Portfolio Piece</p>
</div>
</div>

<div class="row">
<div class="portfolio-element">
<img src="https://picsum.photos/300"/>
<p>Portfolio Piece</p>
</div>
<div class="portfolio-element">
<img src="https://picsum.photos/300"/>
<p>Portfolio Piece</p>
</div>
<div class="portfolio-element">
<img src="https://picsum.photos/300"/>
<p>Portfolio Piece</p>
</div>
</div>
</section>

<footer>
<button><a href="contact.html">Contact Me</a></button>
</footer>

<div class="bigpic">
<img src="" alt="">
</div>

</body>
</html>
72 changes: 71 additions & 1 deletion style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,74 @@ blockquote, q {
margin:0;
max-width:100%;
border: 1px solid magenta
}
}

nav{
display: flex;
justify-content: space-between;
}

.top-section{
display:flex;
justify-content:center;
}
.image-button{
background-image: url("https://picsum.photos/600/400");
background-repeat: no repeat;
background-size: cover;
color: white;
font-size: large;
width: 600px;
height: 400px;
}
.row{
display:flex;
justify-content: space-evenly;
flex-direction:row;
padding: 20px;
}
.portfolio-element{
text-align:center;
}
button{
background-color:lightgrey;
color:navy;
border: navy solid 1px;
padding: 5px 10px;
}
button:hover{
background-color:black;
color:lightblue;
border: lightgrey 1px;
}
button a{
text-decoration: none;
color:inherit;
}

footer{
background-color: lightblue;
padding: 20px;
text-align: center;
}




/*Media Queries go here*/

/*tablet view - 800px*/
/*when the screen size reaches 800px or smaller these rules apply*/
@media (max-width: 800px){


}



/*when the screen size reaches 500px or smaller these rules apply*/
/*mobile view 500px*/
@media (max-width: 500px){


}