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 Lesson1-Git/newFile.js
Empty file.
50 changes: 49 additions & 1 deletion Lesson2-HTML-CSS/homework/homework.html
Original file line number Diff line number Diff line change
@@ -1 +1,49 @@
<!-- In this file you will complete the homework found in the homework-readme.md file -->
<!-- In this file you will complete the homework found in the homework-readme.md file -->

<html>
<head>


<title>Colin's HTML homework</title>
<link rel="stylesheet" href="./index.css"/>
<style>
<!--
#spanId {
font-size: 18px;
margin: 50px;
}
#thirdDiv {
height: 600px;
width: 500px;
background: purple;
padding: 50px;
border: 4px solid black;
}
img {
width: 400px;
}
h1 {
color: royalblue;
}
li {
font-family: Sans-serif;
}
-->
</style>


</head>
<body>
<div class="divClass"><h1>Colin Gilmour</h1><h3>Lambda School</h3><h4>HTML/CSS homework</h4></div>
<div class="divClass"><span id="spanId">My favorite food is <a href="https://bostonpizza.com/en/index.html">Boston</a> Pizza.</span></div>
<div id="thirdDiv"><ul><li>Pizza <img src="http://lorempixel.com/400/200/food/"/></li><li>Beer <img src="http://lorempixel.com/400/200/food/"/></li></ul></div>


</body>






</html>
21 changes: 21 additions & 0 deletions Lesson2-HTML-CSS/homework/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

#spanId {
font-size: 18px;
margin: 50px;
}
#thirdDiv {
height: 600px;
width: 500px;
background: purple;
padding: 50px;
border: 4px solid black;
}
img {
width: 400px;
}
h1 {
color: royalblue;
}
li {
font-family: Sans-serif;
}