Skip to content

Jason thornton #1

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
18 changes: 15 additions & 3 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,20 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet"href="style/index.css">
</head>
<body>
<h1> ABOUT </h1>
</body>
</html>
<header id="top">
<nav>
<div>
<h1>Jason Thornton</h1>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
</div>

</nav>
</header>
20 changes: 16 additions & 4 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,22 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= <h1> ABOUT </h1>, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet"href="style/index.css">
</head>
<body>
<h1> CONTACT </h1>
</body>
</html>
<header id="top">
<nav>
<div>
<h1>Jason Thornton</h1>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
</div>

</nav>
</header>
64 changes: 62 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,68 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet"href="style/index.css">
</head>
<body>
<header id="top">
<nav>
<div>
<h1>Jason Thornton</h1>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
</div>

</body>
</html>
</nav>
</header>
<section class="main">

<div class="mainContent">
<h2>Jason Thornton</h2>
</div>
<button>My Projects</button>

</section>
<div class="bottom">

<div class=images>
<img src="https://cdn.pixabay.com/photo/2016/12/30/14/48/guitar-1940703_960_720.jpg" alt="logo"/>
<h2>Guitars</h2>
</div>
<div class=images>
<img src="https://cdn.pixabay.com/photo/2017/09/25/13/12/dog-2785074_960_720.jpg" alt="logo"/>
<h2>Dogs</h2>
</div>
<div class=images>
<img src="https://cdn.pixabay.com/photo/2014/11/30/14/11/kitty-551554_960_720.jpg" alt="logo"/>
<h2>Cats</h2>
</div>
<div class=images>
<img src="https://cdn.pixabay.com/photo/2017/09/04/18/39/coffee-2714970_960_720.jpg" alt="logo"/>
<h2>Coffee</h2>
</div>
<div class=images>
<img src="https://cdn.pixabay.com/photo/2016/11/21/12/10/tv-1844964_960_720.jpg" alt="logo"/>
<h2>Television</h2>
</div>
<div class=images>
<img src="https://cdn.pixabay.com/photo/2017/08/21/03/38/super-mario-2663951_960_720.jpg" alt="logo"/>
<h2>Video Games</h2>
</div>

</div>
<footer>
<button>Contact</button>
</footer>








</body>
Empty file added jason-thornton.txt
Empty file.
18 changes: 15 additions & 3 deletions projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,20 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet"href="style/index.css">
</head>
<body>
<h1> PROJECTS </h1>
</body>
</html>
<header id="top">
<nav>
<div>
<h1>Jason Thornton</h1>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
</div>

</nav>
</header>
85 changes: 84 additions & 1 deletion style/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,84 @@
/* Add CSS styling here */
*{
box-sizing: border-box;
padding: 0;
margin: 0;
max-width: 100%;



}
header nav{
width:100%;
background-color: CadetBlue;
color: azure;
display:flex;
justify-content: space-between;
align-items:center;
}
h1{
text-size: 30%;
}

.links{
width: 60%;
display: flex;
justify-content: space-around;
}

a {
background-color: CadetBlue;
color: azure;
padding: 1rem 1.5rem;
text-decoration: none;
text-transform: uppercase;
}
a:hover{
background-color: blue;
}

button{
width:15%;
height: auto;
}

.main{
height: 50vh;
margin: 5%;
color:azure;
background-color: darkcyan;
display:flex;
justify-content: center;
align-items: center;
flex-direction: column ;
}
.bottom{

display:flex;
flex-wrap: wrap;
justify-content: space-evenly;
}

.images {
margin:5%;
width: 20%;
display: flex;
flex-direction: column;


}

footer{
background-color: cadetblue;
display:flex;
justify-content: center;
}
.images h2{
display:flex;
justify-content: center;
}