Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.DS_Store
*.md
node_modules
94 changes: 94 additions & 0 deletions about.html
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">
Copy link
Copy Markdown

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?

<div class="title">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The 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>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The 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> &copy; 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>
Loading