forked from AdaGold/group-fansite
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Ampers Lily Sky #2
Open
lillers1122
wants to merge
14
commits into
Ada-C9:master
Choose a base branch
from
lillers1122: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
14 commits
Select commit
Hold shift + click to select a range
07f9d6d
basic file structure and files created
lillers1122 2b4ef1f
very rough main page, starting to turn portfolio wireframe into html …
lillers1122 661ecf9
portfolio page drafted; about page begun
lillers1122 7289611
basic main/portfolio/about pages + css complete
lillers1122 02359ef
language logos added to main page
lillers1122 40b90a0
hobby html + css pages created and linked in navs
lillers1122 f834a6d
basic 4 pages completed
lillers1122 0292f2b
corrections after running html validator
lillers1122 56424e6
favicon added to all pages
lillers1122 46ad66e
mobile line added to html pages
lillers1122 4ba56c8
mobile updates and DRYing up
lillers1122 466ceb8
cool bits now statically appear on mobile screens instead of mouse-ov…
lillers1122 4f9c3cc
typo fix + alignment fix on portfolio page
lillers1122 bfa3873
deleted errant Ruby reference
lillers1122 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
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.
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.
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,61 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Lily</title> | ||
<link rel="icon" type="image/png" href="images/favicon.png" sizes="32x32" /> | ||
<link href="styles/normalize.css" rel="stylesheet" /> | ||
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Oswald" rel="stylesheet"> | ||
<link href="styles/style.css" rel="stylesheet" /> | ||
<link href="styles/index.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li> | ||
main | ||
</li> | ||
<li> | ||
<a href="pages/about.html">about</a> | ||
</li> | ||
<li> | ||
<a href="pages/portfolio.html">portfolio</a> | ||
</li> | ||
<li> | ||
<a href="pages/hobby.html">hobby</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<section class="dino"> | ||
<p> | ||
<img src="images/Maude.jpg" alt="sheep-graphic" title="maude" /> | ||
</p> | ||
</section> | ||
|
||
<section class="hero"> | ||
<h1>Hello</h1> | ||
</section> | ||
|
||
<section class="bio"> | ||
<p> | ||
My name is Lily and I'm a student at Ada Developers Academy. Please feed me? Just kidding, I already have lots of pie.<br />I am not a sheep!<br /> | ||
</p> | ||
</section> | ||
|
||
</main> | ||
<footer> | ||
<p> | ||
goodbye! | ||
</p> | ||
</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,87 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>About</title> | ||
<link rel="icon" type="image/png" href="../images/favicon.png" sizes="32x32" /> | ||
<link href="../styles/normalize.css" rel="stylesheet" /> | ||
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Oswald" rel="stylesheet"> | ||
<link href="../styles/style.css" rel="stylesheet" /> | ||
<link href="../styles/about.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href="../index.html">main</a> | ||
</li> | ||
<li> | ||
about | ||
</li> | ||
<li> | ||
<a href="../pages/portfolio.html">portfolio</a> | ||
</li> | ||
<li> | ||
<a href="../pages/hobby.html">hobby</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<section class="dino"> | ||
<p> | ||
<img src="../images/dogg.jpg" /> | ||
</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Lily Sky</h2> | ||
<p id="dog">I am not a dog!</p> | ||
</section> | ||
|
||
<section class="content"> | ||
<h3>Currently working in:</h3> | ||
<ul> | ||
<li> | ||
<img src="../images/ruby.png" alt="ruby" title="ruby"/> | ||
</li> | ||
<li> | ||
<img src="../images/minitest.png" alt="minitest" title="minitest"/> | ||
</li> | ||
<li> | ||
<img src="../images/html5.png" alt="html5" title="html5"/> | ||
</li> | ||
<li> | ||
<img src="../images/css3.png" alt="css3" title="css3"/> | ||
</li> | ||
<li> | ||
<img src="../images/photoshop.png" alt="photoshop" title="photoshop"/> | ||
</li> | ||
</ul> | ||
<h3>Soon to be working in:</h3> | ||
<ul> | ||
<li> | ||
<img src="../images/rails.jpg" alt="rails" title="rails"/> | ||
</li> | ||
<li> | ||
<img src="../images/javascript.jpg" alt="javascript" title="javascript"/> | ||
</li> | ||
<li> | ||
<img src="../images/react.jpg" alt="react" title="react"/> | ||
</li> | ||
</ul> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<p> | ||
goodbye! | ||
</p> | ||
</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,83 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>hobby</title> | ||
<link rel="icon" type="image/png" href="../images/favicon.png" sizes="32x32" /> | ||
<link href="../styles/normalize.css" rel="stylesheet" /> | ||
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Oswald" rel="stylesheet"> | ||
<link href="../styles/style.css" rel="stylesheet" /> | ||
<link href="../styles/hobby.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href="../index.html">main</a> | ||
</li> | ||
<li> | ||
<a href="about.html">about</a> | ||
</li> | ||
<li> | ||
<a href="portfolio.html">portfolio</a> | ||
</li> | ||
<li> | ||
hobby | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<section class="snippets"> | ||
<h2>Sweet Hobby O' Mine</h2> | ||
<ul> | ||
<li> | ||
<img src="../images/Mr-Grumps.jpg" alt="grumpy man" /> | ||
<h3>Hobby Post #1</h3> | ||
<h4>Date: Today</h4> | ||
<p> | ||
Pastry cotton candy chupa chups. Tiramisu apple pie chocolate donut gummi bears cheesecake I love. Gummies pudding biscuit caramels muffin cookie cotton candy. I love apple pie caramels marshmallow. Dessert dessert I love I love jujubes I love sugar plum. Powder wafer cake icing. Cotton candy cake cheesecake I love wafer pudding chocolate halvah donut. Toffee marshmallow I love chocolate bar lollipop wafer I love I love I love. I love topping bear claw caramels powder dragée cotton candy candy fruitcake. Pie oat cake toffee. | ||
</p> | ||
</li> | ||
<li> | ||
<img src="../images/Mr-Grumps.jpg" alt="grumpy man" /> | ||
<h3>Hobby Post #2</h3> | ||
<h4>Date: Yesterday</h4> | ||
<p> | ||
Fruitcake icing sweet. Croissant macaroon I love ice cream croissant wafer ice cream I love. Carrot cake cheesecake pie I love jelly-o donut soufflé. Marshmallow candy tootsie roll sugar plum chocolate bar gummi bears I love. Carrot cake I love jelly-o I love jujubes chocolate cake. Muffin I love cotton candy cupcake cheesecake chocolate bar. Gingerbread brownie cake. | ||
</p> | ||
</li> | ||
<li> | ||
<img src="../images/Mr-Grumps.jpg" alt="grumpy man" /> | ||
<h3>Hobby Post #3</h3> | ||
<h4>Date: Day Before Yesterday</h4> | ||
<p> | ||
Donut I love sweet roll. Candy I love muffin brownie lollipop jujubes tart gummies sugar plum. Tiramisu I love bear claw I love soufflé halvah. Jelly-o cheesecake tiramisu jelly I love sweet. I love tiramisu I love. Biscuit I love powder cookie gummi bears tiramisu. | ||
</p> | ||
</li> | ||
<li> | ||
<img src="../images/Mr-Grumps.jpg" alt="grumpy man" /> | ||
<h3>Hobby Post #4</h3> | ||
<h4>Date: Day Before That</h4> | ||
<p> | ||
Bear claw biscuit biscuit cake cupcake dragée tiramisu jujubes. Lollipop cheesecake jelly beans I love candy jelly-o I love. Gingerbread gummies I love jelly cake dragée I love lollipop. Donut jelly cake biscuit sugar plum chocolate bar gingerbread. Macaroon danish cake sugar plum marzipan sweet tart donut gummies. Chocolate soufflé jelly I love donut candy macaroon. Cheesecake jelly beans jelly-o. Gummi bears cotton candy chocolate bar bonbon tiramisu carrot cake. | ||
</p> | ||
</li> | ||
</ul> | ||
</section> | ||
|
||
<section class="egg"> | ||
<p> | ||
I am not a grumpy man!<br /> | ||
</p> | ||
</section> | ||
|
||
<footer> | ||
<p> | ||
goodbye! | ||
</p> | ||
</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,101 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Portfolio</title> | ||
<link rel="icon" type="image/png" href="../images/favicon.png" sizes="32x32" /> | ||
<link href="../styles/normalize.css" rel="stylesheet" /> | ||
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Oswald" rel="stylesheet"> | ||
<link href="../styles/style.css" rel="stylesheet" /> | ||
<link href="../styles/portfolio.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href="../index.html">main</a> | ||
</li> | ||
<li> | ||
<a href="about.html">about</a> | ||
</li> | ||
<li> | ||
portfolio | ||
</li> | ||
<li> | ||
<a href="hobby.html">hobby</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<section class="portfolio"> | ||
<h2>Ada Developers Academy c9 projects:</h2> | ||
<ul> | ||
<li> | ||
<img src="../images/Startrly-graphic.png" alt="startrly-graphic" /> | ||
<h3>Startrly</h3> | ||
<p> | ||
Prompt: Create a website from a given wireframe. | ||
</p> | ||
<p> | ||
Date: March 2018. | ||
</p> | ||
<p> | ||
Languages: HTML & CSS. | ||
</p> | ||
</li> | ||
<li> | ||
<img src="../images/Hotel-graphic.png" alt="hotel-graphic" /> | ||
<h3>Hotel</h3> | ||
<p> | ||
Prompt: Create a hotel room and block reservation system using Ruby. Read and write to CSV files optional. | ||
</p> | ||
<p> | ||
Date: March 2018. | ||
</p> | ||
<p> | ||
Language: Ruby. | ||
</p> | ||
</li> | ||
<li> | ||
<img src="../images/Word-Guess-graphic2.png" alt="word-guess-graphic" /> | ||
<h3>Word Guess</h3> | ||
<p> | ||
Prompt: Create a word guess game that tracks words letters and words entered by a user. | ||
</p> | ||
<p> | ||
Date: February 2018. | ||
</p> | ||
<p> | ||
Language: Ruby. | ||
</p> | ||
</li> | ||
<li> | ||
<img src="../images/Random-Menu-graphic.png" alt="random-menu-graphic" /> | ||
<h3>Random Menu</h3> | ||
<p> | ||
Prompt: Create a program to randomly offer a user a requested number of unique food items. | ||
</p> | ||
<p> | ||
Date: February 2018. | ||
</p> | ||
<p> | ||
Language: Ruby. | ||
</p> | ||
</li> | ||
</ul> | ||
</section> | ||
|
||
<footer> | ||
<p> | ||
goodbye! | ||
</p> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.
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.
alt
attribute...