-
Notifications
You must be signed in to change notification settings - Fork 21
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
cliffjadoo
wants to merge
4
commits into
FEWD87:master
Choose a base branch
from
cliffjadoo:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
margin:20px; | ||
background:teal; | ||
} | ||
|
||
footer { | ||
text-align: center; | ||
} | ||
|
||
.picf { | ||
display: inline; | ||
} | ||
|
||
.social{ | ||
width:100px; | ||
height:100px; | ||
bottom: 0; | ||
margin:10px; | ||
} | ||
|
||
.centertext { | ||
text-align: center; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Document</title> | ||
<link href="css/style.css" rel="stylesheet" type="text/css"> | ||
</head> | ||
|
||
<body> | ||
<h1> Resumes 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> | ||
<footer> | ||
<h4 class="centertext">Ricks 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> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @cliffjadoo the |
||
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 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; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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 🔨