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
54 changes: 45 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,47 @@
<!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>
</html>
<html lang="en">
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel='stylesheet' type='text/css' href='style/index.css'>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h1>Timothy Hall</h1>
<nav class= nav-con>
<a class= link href= '#'>Name</a>
<a class= link href= 'about.html'>About</a>
<a class= link href= 'projects.html'>Project</a>
<a class= link href= 'contact.html'>Contact</a>
</nav>
</header>
<h2>Welcome to Tim's Site!!</h2>
<div class=pic>
<img id= first src= 'https://picsum.photos/200/300'>
</div>

<section class= sec-con>
<form acton= 'projects.html'>
<button class= 'button-1' type= submit>Click to go to My Projects</button>
</form>
<img class= second src= 'https://picsum.photos/200'>
<img class= second src= 'https://picsum.photos/200'>
<img class= second src= 'https://picsum.photos/200'>
<img class= second src= 'https://picsum.photos/200'>
<p class= text>I always try to push myself to my limits,even just beginning. Come see what I have learned so fat!!!</p>
</section>
<footer class= foot>
<address class= add-con>
<p>Timothy Hall</p><br>
<a class= 'email' href= 'TimothyfHallJr@gmail.com'>TimothyfHallJr@gmail.com </a>
<form action= 'contact.html'>
<button class= 'button-2' type= submit>Press this button to Contact Me</button>
</form>
</address>
</footer>
</body>

</html>
191 changes: 190 additions & 1 deletion style/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,190 @@
/* Add CSS styling here */
/* Add CSS styling here */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
html {
font-size: 62.5;
}
* {
background: #6b5b95;
}
@media(max-width: 500px){
* {
background: black;
}
}

h1 {
font-size: 6.5rem;
text-align: center;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
background: green;
color: goldenrod;
height: 30vh;
display: flex;
justify-content: center;
align-items: center;
}
@media(max-width: 800px){
h1 {
background: red;
color: white;
}
}
.nav-con {
display: flex;
flex-direction: row;
justify-content: space-around;
}

a {
background: black;
font-size: 2rem;
border: 4px solid darkred;
color: yellowgreen;
text-decoration: none;
}
h2 {
font-size: 4rem;
text-align: center;
color: White;
padding: 0 0 5% 0;
}
div {
display: flex;
justify-content: center;
align-content: center;
}
.pic {
background: darkred;
}
#first {
border: 5px solid black;
height: 60vh;
width: 120vh;
margin: 10vh;
}
.second {
height: 20vh;
width: 20vh;
border: 6px solid black;
}
p {
width: 40vh;
background: greenyellow;
font-size: 1.5em;
border: 1px solid black;
}

section{
display: flex;
justify-content: space-around;
align-items: center;
border: 1px solid black;
background: orange;
}

address {
display: flex;
justify-content: space-between;
background: orangered;
font-size: 1rem;
color: darkolivegreen;
}

h3 {
background: orangered;
font-size: 5rem;
text-align: center;
}
.button-1 {
height: 12vh;
width: 10vw;
background: green;
cursor: pointer;
}
.button-2 {
color:black;
background: dodgerblue;
Height: 12vh;
width: 5vw;
cursor: pointer;
}
@media(max-width: 500px){
address {
flex-wrap: wrap;
flex-direction: column;
}
@media(max-width: 800px){
section {
flex-wrap: wrap;
}
}
}
@media(max-width: 800px){
.nav-con {
flex-direction: column;
align-items: center;
}
}
@media(max-width: 500px){
.nav-con {
background: cadetblue;
}
}
@media(max-width: 500px){
.link {
background:darkviolet;
color: black;
}
}
@media(max-width: 800px){
section {
flex-wrap: wrap;
}
}