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

completed and revised lab #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
69 changes: 60 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,62 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<html lang="en" dir="ltr"> <meta charset="utf-8" />

<title>CSS Intro</title>
<head>
<meta charset="utf-8" />
<title>CSS Intro</title>

<style>
h1 { font-family:fantasy;
color: purple;
font-size: 30px;;
}
ul {
list-style-type: none;
padding-left: 30px; }

ol {
font-weight: bold;
text-align: center;
}


li { text-align: center;
color:blue;
background-color:pink;
border:1px solid red ;
border-radius: 10px;
padding-left: 30px;
}


img { margin-left:auto;
margin-right: auto;
height: 200px;
display: block; }

body{
font-family: sans-serif;
background-color: blueviolet;
}

h3{text-decoration: underline; }


P {padding-top: 20px;
padding-bottom: 20px;
padding-left: 0px;
padding-right: 0px;
font-weight:bold ;
font-style: talic }

h2{color:aqua;
text-decoration:dotted;
text-align: center; }

</style>

</head>
<body>
<h1>Your Name Here</h1>
<h1>Tonesha Rose</h1>
<div>
<p>
This is a bunch of information about myself. I'm from here and there and
Expand All @@ -14,9 +65,9 @@ <h1>Your Name Here</h1>
</p>
</div>

<img
src="https://www.breakthrough-pt.com/wp-content/uploads/2014/11/female-default-profile-photo.png"
alt=""
<img class="image"
src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png"
alt="profile photo"
/>

<div>
Expand All @@ -28,6 +79,7 @@ <h3>Languages</h3>
<li>HTML5</li>
<li>CSS3</li>
</ul>


<ol>
<h3>Libraries</h3>
Expand Down Expand Up @@ -58,5 +110,4 @@ <h2>Contact Me</h2>
<li><a href="linkedin.com">LinkedIn link</a></li>
<li><a href="angellist.com">Angel list link</a></li>
</ul>
</body>
</html>
</body>