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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Together we can create a Mr. Potato Head using GitHub!


###Directions
1. Find your teacher on github.com and find the `Mr_Potato_Head` repository:
1. You are on github.com and this is Venkat's `Mr_Potato_Head` repository:
2. Fork the Repo
3. Create a new workspace for this repository using the clone from Git URL from your repository.
4. Add your assigned body part to `potatohead.html`. Body parts can be found in the `assets` folder
Expand Down
Empty file added assets/Untitled
Empty file.
35 changes: 30 additions & 5 deletions potato.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,18 @@ h1 {
top: 28px; left: 68px;
}
/* Insert CSS for arms below this line*/

#arms_image{
top: 160px;
left:23px;
}



/* Insert CSS for ears below this line*/

#ears_image{
top: 100px;
right: 51px;
}



Expand All @@ -38,7 +44,10 @@ h1 {

/* Insert CSS for mouth below this line*/


#mouth_image {
bottom: 195px; right:135px;

}


/* Insert CSS for nose below this line*/
Expand All @@ -47,7 +56,10 @@ h1 {


/* Insert CSS for eyebrows below this line*/

#eyebrows_image{
top:35px;
left:100px;
}



Expand All @@ -57,7 +69,9 @@ h1 {


/* Insert CSS for hat below this line*/

#hat_image {
top: 6px; left: 102px;
}



Expand All @@ -67,12 +81,23 @@ h1 {


/* Insert CSS for moustache below this line*/
#moustache_image {

width: 100px;
height: 50px;
top: 100px;
right: 130px;

}



/* Insert CSS for shoes below this line*/

#shoes_image{
top:298px;
right:63px;
}



Expand Down
12 changes: 6 additions & 6 deletions potatohead.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ <h1>Mr. Potato Head</h1>

<div id="potato">
<img id="body" src="assets/body.png">
<img id="arms_image">
<img id="arms_image" src="assets/arms.png">
<img id="ears_image">
<img id="eyes_image" >
<img id="mouth_image" >
<img id="mouth_image" src="assets/mouth.png">
<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="hat_image" src="assets/hat.png"> >
<img id="shoes_image" src="assets/shoes.png" >
<img id="cane">
<img id="earrings">
<img id="hatflower">
Expand Down