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
75 changes: 67 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>

</body>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="style/index.css">
</head>
<body>
<header>
<h1>Jon Sawyers</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Project</a>
</nav>
</header>
<section id="about">
<div class="left">
<img src="pictures/profilepic.jpg" alt="Picture of Jon Sawyers">
</div>
<div class="right">
<h2>Jon Sawyers</h2>
<a href="projects.html">My Projects</a>
<p>Here are some words about me and my journey in coding so far. These words are authentic and inspiring. These words tell my story.</p>
</div>
</section>
<section>
<div class="projects">
<div>
<img src="https://picsum.photos/id/1006/367/267" alt="Woman and her Siberian Husky sitting on edge of cliff overlooking canyon.">
<p>Title of a</p>
</div>
<div>
<img src="https://picsum.photos/id/1012/367/267" alt="">
<p>Project</p>
</div>
<div>
<img src="https://picsum.photos/id/1025/367/267" alt="">
<p>Might Go</p>
</div>
<div>
<img src="https://picsum.photos/id/1062/367/267" alt="">
<p>Right Here</p>
</div>
<div>
<img src="https://picsum.photos/id/149/367/267" alt="">
<p>Cool Thing</p>
</div>
<div>
<img src="https://picsum.photos/id/137/367/267" alt="">
<p>Fun Thing</p>
</div>
<div>
<img src="https://picsum.photos/id/145/367/267" alt="">
<p>Spicy Thing</p>
</div>
<div>
<img src="https://picsum.photos/id/169/367/267" alt="">
<p>Special Thing</p>
</div>
</div>
</section>
<footer>
<h3>Like What You See?</h3>
<a href="contact.html">Contact Me</a>
</footer>
</body>
</html>
Binary file added pictures/profilepic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 75 additions & 1 deletion style/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,75 @@
/* Add CSS styling here */
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
vertical-align: baseline;
font-family: inherit;
font-weight: inherit;
font-style: inherit;
font-size:100%;
outline: 0;
padding: 0;
margin: 0;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
ol, ul {
list-style: none;
}
/* tables still need cellspacing="0" in the markup */
table {
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
font-weight: normal;
text-align: left;
}
/* remove possible quote marks (") from <q> & <blockquote> */
blockquote:before, blockquote:after, q:before, q:after {
content: "";
}
blockquote, q {
quotes: "" "";
}
*{
box-sizing: border-box;
max-width: 100%;
border:1px solid black;
}
html{
font-size: 62.5%;
}

/*Header Style*/

header{
background-color: gray;
}
h1{
font-size: 5.5rem;
color: white;

}
header nav a{
text-decoration:none;
font-size: 2rem;
color:white;
background-color: black;

}

/*About Style*/

#about {
display: flex;
justify-content: space-between;
width:50%;
height:50vh;
}
#about .left{
width:20%;

}