Skip to content

added newFile.js #1650

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

Open
wants to merge 8 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.
Empty file.
Empty file added Lesson01-Git/newFile.js
Empty file.
39 changes: 38 additions & 1 deletion Lesson02-HTML-CSS/homework/homework.html
Original file line number Diff line number Diff line change
@@ -1 +1,38 @@
<!-- 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>
<head>

<!-- Meta Information -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Lambda Precourse HTML Homework">
<meta name="keywords" content="Lambda School, Lesson 2, Precourse,HTML Homework">
<meta name="author" content="Joseph Schovanec">
<link rel="stylesheet" type="text/css" href="https://github.com/josephschovanec/Precourse/blob/master/Lesson02-HTML-CSS/homework/style.css">
<!-- Title -->
<title>Joseph Schovanec's HTML Homework</title>

</head>

<body>
<div class="divClass">
<h1>Joseph Schovanec</h1>
<h3>Lambda School</h3>
<h4>HTML/CSS Homework</h4>
</div>

<div class="divClass">
<p>My Favorite Food is: <span id="spanId" style= "color:Green"> Penne Alfredo with extra Parmesan cheese, Broccoli, Mixed Peppers, Chicken, and Shrimp.</span></p>
<a href="https://www.olivegarden.com/home">My Favorite Restaurant</a>
</div>

<div id="thirdDiv">
<ul>
<li>Alfredo <img src="C:\Users\josep\OneDrive\Desktop\htmlCrashCourse\ImagesForTribute\Pixel Art Pics\alfredo.jpg" alt="Plate Of Alfredo"></li>
<li>Pizza <img src="C:\Users\josep\OneDrive\Desktop\htmlCrashCourse\ImagesForTribute\Pixel Art Pics\greenPepperPizza.jpg" alt="Green Pepper Pizza"></li>
</ul>
</div>

</body>
</html>
17 changes: 17 additions & 0 deletions Lesson02-HTML-CSS/homework/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
h1 {
color: aqua;
}
img {
width: 400px;
}
#thirdDiv {
height: 600px;
width: 500px;
background: darkcyan;
padding: 50px;
border: 3px green solid;
}
#spanId {
font-size: 18px;
margin: 50px;
}