diff --git a/README.md b/README.md index da483eb..f0a1cc2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# FEWD87 Homework #1 - Resume Website for famous person of your choice +# FEWD80 Homework #1 - Resume Website for a famous person of your choice ## Directions @@ -8,13 +8,18 @@ The website should meet the following criteria: - Website should have two (2) pages - 1) A bio page - short bio + 1) A bio / about me page + 2) Experience / Interests page - Visitors to your website should be able to easily navigate to each page via a link + - Code for the site should make good use of indentation + - Site should include at least one image + - Site should have at least one link to an external website + - Site should use an external style sheet and incorporate at least 5 different css rules (of your own choosing) -Note: Content of the site does not matter, have fun with it (however, content should be SFW) +Note: Content of the site does not matter, have fun with it (content should be SFW) diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..99106b7 --- /dev/null +++ b/css/style.css @@ -0,0 +1,41 @@ +* { + font-family: Verdana, sans-serif; + padding-left: 10px; + background-color: teal; +} + +nav{ + text-align: center; +} + +h1{ + text-align:center; +} + +h2 { + display:inline; + width:100%; + text-align: center; + border: solid; + margin:20px; + background:teal; +} + +footer { + text-align: center; +} + +.picf { + display: inline; +} + +.social{ + width:100px; + height:100px; + bottom: 0; + margin:10px; +} + +.centertext { + text-align: center; +} \ No newline at end of file diff --git a/images/fb.png b/images/fb.png new file mode 100644 index 0000000..0a13167 Binary files /dev/null and b/images/fb.png differ diff --git a/images/ig.jpg b/images/ig.jpg new file mode 100644 index 0000000..83cc956 Binary files /dev/null and b/images/ig.jpg differ diff --git a/images/li.jpg b/images/li.jpg new file mode 100644 index 0000000..f55b86a Binary files /dev/null and b/images/li.jpg differ diff --git a/images/rick.jpg b/images/rick.jpg new file mode 100644 index 0000000..acbf11f Binary files /dev/null and b/images/rick.jpg differ diff --git a/images/rick1.jpg b/images/rick1.jpg new file mode 100644 index 0000000..356d6b6 Binary files /dev/null and b/images/rick1.jpg differ diff --git a/images/rm.jpg b/images/rm.jpg new file mode 100644 index 0000000..b7125ea Binary files /dev/null and b/images/rm.jpg differ diff --git a/index.html b/index.html index e69de29..a803060 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,34 @@ + + + + + + Document + + + + +

Resumes of Rick from Rick and Morty

+ +

Pleaseclick here for a sample portfolio theme song from Rick and Morty

+
+ Image of Rick +

Rick and Morty Family Pic

+ Image of Rick and Morty +

Professional Picture of Rick and Morty

+ k's miltary picture +

Rick's Miltary Exxperience

+
+ + + diff --git a/pages/bio.html b/pages/bio.html new file mode 100644 index 0000000..d020096 --- /dev/null +++ b/pages/bio.html @@ -0,0 +1,23 @@ + + + + + + Bio + + +

Biography of Rick

+

Rick was born on earth +

Shortly there after he became a world reknown scientist. He currently travels the universe looking for various materials.

+

An eccentric and alcoholic mad scientist who is the father of Beth, and the maternal grandfather of Morty and Summer. His irresponsible tendencies lead Jerry to worry about the safety of their son Morty. The series is often retroscripted for Rick's lines

+

Go home

+ + + \ No newline at end of file diff --git a/pages/experience.html b/pages/experience.html new file mode 100644 index 0000000..36dc2fe --- /dev/null +++ b/pages/experience.html @@ -0,0 +1,36 @@ + + + + + + Rick's Experience + + +

Experience

+

Research Scientist - Rick INC

+

March 1990 - Present

+ +

Graduate Student - Harvard University

+

March 1986-March 1990

+ +

Go home

+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..a9fc3c4 --- /dev/null +++ b/style.css @@ -0,0 +1,41 @@ +* { + font-family: Verdana, sans-serif; + padding-left: 10px; + background-color: teal; +} + +nav{ + text-align: center; +} + +h1{ + text-align:center; +} + +h2 { + display:inline; + width:100%; + text-align: center; + border: solid 1px; + margin:20px; + background:teal; +} + +footer { + text-align: center; +} + +.picf { + display: inline; +} + +.social{ + width:100px; + height:100px; + bottom: 0; + margin:10px; +} + +.centertext { + text-align: center; +} \ No newline at end of file