Skip to content
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

Add files newFile.js and 123.html #1658

Open
wants to merge 4 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
Empty file added 123.html
Empty file.
Empty file added Lesson01-Git/newFile.js
Empty file.
53 changes: 52 additions & 1 deletion Lesson02-HTML-CSS/homework/homework.html
Original file line number Diff line number Diff line change
@@ -1 +1,52 @@
<!-- 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 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ivan's HTML homework</title>
<!--<style>
h1{
color:chocolate;
}
img{
width: 400px;
}
#thirdDiv{
height: 600px;
width: 500px;
background-color: lime;
padding: 50px;
border: 3px solid blue;
}
#spanId{
margin: 50px;
font-size: 18px;
}
</style>-->
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="divClass">
<h1>Ivan</h1>
<h3>Lambda School</h3>
<h4>HTML/CSS homework</h4>
</div>
<div class="divClass">
<span id="spanId">Soft fluffy texture that burst sweetness in your mouth.</span>
<a href="goldilocks.com.ph">Pinoy Cuisine</a>
</div>
<div id="thirdDiv">
<ul>
<li>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fphotos1.blogger.com%2Fhello%2F164%2F1454%2F640%2FLecheFlan2.jpg&f=1&nofb=1"/>
</li>
<li>
<img src="http://lorempixel.com/400/200/food/"/>
</li>
</ul>
</div>

</body>
</html>
17 changes: 17 additions & 0 deletions Lesson02-HTML-CSS/homework/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
h1{
color:chocolate;
}
img{
width: 400px;
}
#thirdDiv{
height: 600px;
width: 500px;
background-color: lime;
padding: 50px;
border: 3px solid blue;
}
#spanId{
margin: 50px;
font-size: 18px;
}
29 changes: 24 additions & 5 deletions Lesson03-CSS-Positioning/homework/homework.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,55 @@ in this folder, you are in the wrong place.

/* We will start this one off for you: */
#exerciseOne {

display:block;
text-align: center;

}


/* Exercise Two: Positioning a Header Bar*/

/* Place code here */
#exerciseTwo{
display: none;


}

/* Exercise Three: */

/* Place code here */

#exerciseThree{
position: relative;
top: 100px;
left: 200px;
}


/* Exercise Four: */

/* Place code here */

#exerciseFour{
position: fixed;
top: 0;
left: 0;
}


/* Exercise Five */

/* Place code here */

#exerciseFive{
display:flex;
justify-content: space-between;
flex-direction: row-reverse;
}


/* Exercise Six */

#exerciseSeven {
display: flex;
justify-content: space-evenly;
align-items: center;
}

Empty file added newFile.js
Empty file.