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
30 changes: 26 additions & 4 deletions potato.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ h1 {
background-color: white;
}

#potato img {
img {
position: absolute;
}

Expand All @@ -22,17 +22,36 @@ h1 {
top: 28px; left: 68px;
}
/* Insert CSS for arms below this line*/
#moustache_image {
top:150px;
left:90px;
}

#arms_image{
top: 120px;
left:10px;
}

#eyebrows_image {
top: 50px;
right:122px;
}


/* Insert CSS for ears below this line*/

/* Insert CSS for ears below this line*/
#ears_image {
top: 110px;
left: 58px;
}



/* Insert CSS for eyes below this line*/

#eyes_image {
top: 110px;
left: 130px;
}



Expand Down Expand Up @@ -72,7 +91,10 @@ h1 {


/* Insert CSS for shoes below this line*/

#shoes_image {
top:295px;
left:45px;
}



Expand Down
13 changes: 7 additions & 6 deletions potatohead.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

<!DOCTYPE html>
<!-- saved from url=(0077)http://www.webstepbook.com/supplements/labsection/lab8-potatohead/potato.html -->
<html>
Expand All @@ -13,16 +14,16 @@ <h1>Mr. Potato Head</h1>

<div id="potato">
<img id="body" src="assets/body.png">
<img id="arms_image">
<img id="ears_image">
<img id="eyes_image" >
<img id="arms_image" src= assets/arms.png>
<img id="eyes_image" src="assets/eyes.png">
<img id="ears_image" src="assets/ears.png">
<img id="mouth_image" >
<img id="nose_image" >
<img id="eyebrows_image" >
<img id="eyebrows_image" src="assets/eyebrows.png" >
<img id="glasses_image" >
<img id="hat_image" >
<img id="moustache_image" >
<img id="shoes_image" >
<img id="moustache_image" src="assets/moustache.png">
<img id="shoes_image" src="assets/shoes.png" >
<img id="cane">
<img id="earrings">
<img id="hatflower">
Expand Down