-
Notifications
You must be signed in to change notification settings - Fork 35
Kelly Souza Static Site #35
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
base: master
Are you sure you want to change the base?
Changes from all commits
8cb6109
ac50fa4
f5eea39
43b05de
4127fd3
34e1167
34c1a12
aefc4be
0ec6aa4
eea3e3b
756efc4
b8c4e03
3f26eb9
aa91312
ab3550b
e200fe7
0623d64
959cb47
a5a726f
41006a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| .DS_Store | ||
| *.md | ||
| node_modules |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <title>About Kelly</title> | ||
| <link rel="stylesheet" href="stylesheets/styles.css"> | ||
| <link rel="stylesheet" href="stylesheets/about.css"> | ||
|
|
||
|
|
||
| </head> | ||
|
|
||
| <body> | ||
| <header> | ||
| <nav> | ||
| <ul> | ||
| <li class="logo-home"><a href="index.html"><strong>KS</strong></a></li> | ||
| <li><a href="tutorial.html">Tutorial</a></li> | ||
| <li><a href="about.html">About</a> </li> | ||
| <li><a href="code-journal.html">Code Journal</a></li> | ||
| <li><a href="portfolio.html">Portfolio</a></li> | ||
| </ul> | ||
| </nav> | ||
| </header> | ||
|
|
||
| <main> | ||
|
|
||
|
|
||
| <section id="title" class="slide header"> | ||
| <h1>Kelly Likes:</h1> | ||
| <p> | ||
| (scroll down) | ||
| </p> | ||
| </section> | ||
|
|
||
| <div id="slide1" class="slide"> | ||
| <div class="title"> | ||
|
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. The text is a little difficult to read -- does this meet accessibility contrast guidelines? |
||
| <h1>Photography</h1> | ||
| <p> | ||
| Kelly, in the time she can find between school and the rest of life, enjoys taking photographs. Her favorite subjects are grand sweeping landscapres, and tiny ordinary things which might | ||
| usually be overlooked. A couple of courses in college on photography and film development lead to a most rewarding hobby. She hopes someday to have her own darkroom and real time to devote to it. | ||
| </div> | ||
| </div> | ||
|
|
||
| <div id="slide2" class="slide"> | ||
| <div class="title"> | ||
| <h1>Code</h1> | ||
| <p> | ||
| Kelly is currently a student at Ada developers academy in Seattle. She fell in love with code from the first look into the HTML of a website. She tinkered with the code, and loved the power to change what she saw on the screen with a few keystroke. Ada Developers Academy created a bridge into that world. | ||
| The water here is deeper than she had imagined and she loves it. | ||
| </p> | ||
| </div> | ||
| <img class="side-pic" src="images/screen_shot.png" alt="code-snippet"> | ||
| <img class="side-pic" src="images/screen_shot2.png" alt="code-snippet"> | ||
| </div> | ||
|
|
||
| <div id="slide3" class="slide"> | ||
| <div class="title"> | ||
| <h1>Nature</h1> | ||
| <p> | ||
| Having grown up in small town America, Kelly frequently took refuge from the slings and arrows of life sitting in the fork of a tree with a book in hand. There was a peace in nature not found elsewhere. | ||
| Kelly returns to find that feeling whenever possible. | ||
| </p> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div id="slide4" class="slide header"> | ||
| <h1>The End</h1> | ||
| <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. The footer on this page appears different from the others (right icons are cut off/run off the right side of the page in Chrome). Should a footer tag be placed inside a main tag? |
||
| <h4> © 2017- </h4> | ||
| <p id="disclaimer"> | ||
| All rights reserved. | ||
| </p> | ||
| <nav> | ||
| <ul class="ways-to-connect"> | ||
| <li class="twitter"> | ||
| <a href="https://twitter.com/KellyMarieSouza" target="_blank"><img src="images/Twitter_Logo_White_On_Blue.png" alt="twitter-logo"></a> | ||
| </li> | ||
| <li class="github"> | ||
| <a href="https://github.com/kellysouza" target="_blank"><img src="images/GitHub-Mark-64px.png" alt="GitHub-logo"></a> | ||
| </li> | ||
| <li class="linkedin"> | ||
| <a href="https://www.linkedin.com/in/kelly-souza-59602287/" target="_blank"><img src="images/In-2C-75px-R.png" alt="linkedin-logo"></a> | ||
| </li> | ||
| <li class="email"> | ||
| <a href="mailto:kelly@kellysouza.com"><img src="images/email-logo.png" alt="email-logo"></a> | ||
| </li> | ||
| </ul> | ||
| </nav> | ||
| </footer> | ||
| </div> | ||
| </main> | ||
| </body> | ||
| </html> | ||
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.
Would it have been possible to give this div id a more contextual rather than positional name? What if you wanted to swap slide 1 with slide 2 -- would the names still make sense?