Skip to content

Update index.html #1

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 7 commits into
base: main
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
28 changes: 26 additions & 2 deletions week-01-html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,32 @@
<head>
<title>Hello World</title>
</head>

<body>
<h1>Hello World</h1>
<p>Welcome to my webpage!</p>
<p>This is my submission for the first assigmnet!</p>
</body>
</html>


<h2>Here is a link to our schools website!</h2>
<a href="https://www.millersville.edu/">Visit Millersville.edu!</a>

<h2>Below is an abreviation for HyperText Markup Language:</h2>
<p> <abbr title="HyperText Markup Language">HTML</abbr> is the focus of this weeks lesson.</p>

<h2>Here is a quote from the movie Ferris Buellers Day Off!</h2>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
Life moves pretty fast. If you don't stop and look around once in a while, you could miss it. - Ferris Bueller
</blockquote>

<h2>Here is a png of our schools logo!</h2>
<embed type="image/png" src="https://www.pinclipart.com/picdir/big/541-5414812_logo-millersville-university-clipart.png" width="256" height="256">

<h2>Here is a list of some of my favorite things to do in my free time!</h2>
<ul>
<li>Working Out</li>
<li>Playing Video Games</li>
<li>Cooking</li>
</ul>

</html>
21 changes: 20 additions & 1 deletion week-02-css/index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,38 @@
<!DOCTYPE html>
<html>
<head>

<title>Styled Text</title>

<link rel="stylesheet" type="text/css" href="styles.css">

<style>
p {
background: content-box radial-gradient(crimson, skyblue);
border: 4mm ridge rgba(170, 150, 220, .6);
}
</style>

</head>

<body>

<p><span class="big">Space</span>: the final frontier.</p>

<p>
These are the voyages of the starship <span class="big">Enterprise</span>.
</p>

<p>
Its continuing mission: to explore <span class="big">strange</span> new
worlds.
</p>

<p>To seek out <span class="big">new life</span>, and new civilizations.</p>

<p><span id="boldly">To boldly go</span> where no one has gone before!</p>


</body>
</html>

</html>