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

Homework Submission from Clifton Jadoo #16

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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)
Binary file added images/fb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/ig.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/li.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/rick.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/rick1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/rm.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">

<head>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo please fix indentation 🔨

<meta charset="UTF-8">
<title>Document</title>
<link href="style.css" rel="stylesheet" type="text/css">
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo the css file should be in a css folder 🔨

</head>

<body>
<h1> Resume of Rick from Rick and Morty</h1>
<nav>
<h2>Experience -<a href="pages/experience.html"> Click me </a></h2>
<h2>Bio of Rick -<a href="pages/bio.html">Click me</a></h2>
</nav>
<p>Please<a href="https://www.youtube.com/watch?v=3gJ1dDUQe2s">click here</a> for a sample portfolio theme song from Rick and Morty</p>
<div class="picf">
<img src="images/rick.jpg" alt="Image of Rick" title="Rick's Selfie" class="center" />
<h3>Rick and Morty Family Pic</h3>
<img src="images/rm.jpg" alt="Image of Rick and Morty" title="Rick's Professional Pic" />
<h3>Professional Picture of Rick and Morty</h3>
<img src="images/rick1.jpg" alt="k's miltary picture" title="Rick's Miltary Pic" />
<h3>Rick's Miltary Exxperience</h3>
</div>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo I see the closing div, but where is the opening div 🔨

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, the opening div is on line 17 / closing is on 24.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo I see it now, but initially it is very hard to see. Can you please go back and Indent your code 🔨

</body>
<footer>
Copy link

@rmjames rmjames May 24, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo the footer belongs in the body 🔨

<h4 class="centertext">Rick's Social Media Links</h4>
<nav>
<a href="linkedin.com"><img src="images/li.jpg" title="linkedin" alt="linkedin" class="social" /></a>
<a href="facebook.com"><img src="images/fb.png" title="facebook" alt="facebook" class="social" /></a>
<a href="instagram.com"><img src="images/ig.jpg" title="instagram" alt="instagram" class="social" /></a>
</nav>
</footer>
</html>
23 changes: 23 additions & 0 deletions pages/bio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="../style.css" rel="stylesheet" type="text/css">
<title>Bio</title>
</head>
<body>
<h1> Biography of Rick </h1>
<p> Rick was born on earth</>
<p> Shortly there after he became a world reknown scientist. He currently travels the universe looking for various materials.</p>
<p>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</p>
<p><a href="../index.html">Go home</a></p>
</body>
<footer>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo the footer should be nested in the body 🔨

<h4>Rick's Social Media Links</h4>
<nav>
<a href="linkedin.com"><img src="../images/li.jpg" title="linkedin" alt="linkedin" class="social"/></a>
<a href="facebook.com"><img src="../images/fb.png" title="facebook" alt="facebook" class="social"/></a>
<a href="instagram.com"><img src="../images/ig.jpg" title="instagram" alt="instagram"class="social"/></a>
</nav>
</footer>
</html>
36 changes: 36 additions & 0 deletions pages/experience.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="../style.css" rel="stylesheet" type="text/css">
<title>Rick's Experience</title>
</head>
<body>
<h1>Experience</h1>
<h2>Research Scientist - Rick INC</h2>
<h3>March 1990 - Present</h3>
<ul>
<li>computational advertising/marketing research</li>
<li>machine learning and data mining</li>
<li>general statistical models and (big) data analytics</li>
<li>causality models</li>
</ul>
<h2>Graduate Student - Harvard University</h2>
<h3>March 1986-March 1990</h3>
<ul>
<li>
Did research on visualization of user opinions on the web
and developing a visualization system to help users intuitively
find the underlying patterns.
</li>
</ul>
<p><a href="../index.html">Go home</a></p>
</body>
<nav>
<h4 class="centertext">Rick's Social Media Links</h4>
<a href="linkedin.com"><img src="../images/li.jpg" title="linkedin" alt="linkedin" class="social" /></a>
<a href="facebook.com"><img src="../images/fb.png" title="facebook" alt="facebook" class="social" /></a>
<a href="instagram.com"><img src="../images/ig.jpg" title="instagram" alt="instagram" class="social" /></a>
</nav>

</html>
41 changes: 41 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -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;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo the border should at least have the px value 🔨

margin:20px;
background:teal;
}

footer {
text-align: center;
}

.picf {
display: inline;
}

.social{
width:100px;
height:100px;
bottom: 0;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cliffjadoo this can be omitted, you use this with position relative and absolute 🔨

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi, which portion can be omitted? This was the only change, I didn't see where I went wrong. Was not sure if you meant line 29.

margin:10px;
}

.centertext {
text-align: center;
}