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
Empty file added Lesson01-Git/newFile.js
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 28 additions & 1 deletion Lesson02-HTML-CSS/homework/homework.html
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
<!-- In this file you will complete the homework found in the homework-readme.md file -->
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bobby Shelley HTML homework</title>
<link rel="stylesheet" href="style.css">
</head>


<body>
<div class="divClass">
<h1>Bobby Shelley</h1>
</div>
<div class="divClass">
<h3>Lambda School</h3>
<span id="spanId">I love spaghetti and meatballs</span>
<a href="https://www.olivegarden.com/home">Olive Garden</a>
</div>
<div id="thirdDiv">
<h4>HTML/CSS homework</h4>
<ul>
<li><img src="https://hips.hearstapps.com/del.h-cdn.co/assets/17/39/2048x1365/gallery-1506456062-delish-spaghetti-meatballs.jpg?resize=400:*">Spaghetti</li>
<li><img src="https://static01.nyt.com/images/2017/05/09/dining/09SALADGUIDE9/09SALADGUIDE9-articleLarge.jpg">Salad</li>
</ul>
</div>
</body>
</html>
36 changes: 36 additions & 0 deletions Lesson02-HTML-CSS/homework/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@


body{
background-image: url("brooke-lark-385507-unsplash.jpg");
margin: auto;
}
h1{
color: limegreen;
}
h4{
text-align: center;
}
img{
width: 400px;
}
.divClass{
text-align: center;
/* display: flex;*/
/* justify-content: center;*/

}
#thirdDiv{
height: 600px;
width: 500px;
background-color: grey;
padding: 50px;
border: 5px solid black;

margin: auto;

}
#spanId{
font-size: 18px;
margin: 50px;
}