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

Sammi-Jo's site [is under construction!] [nodes] #46

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_Store
wireframes/pseudocode.md
Empty file added about-me.html
Empty file.
Empty file added blog.html
Empty file.
54 changes: 54 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sammi-Jo Lee</title>
<link href="styles/normalize.css" rel="stylesheet">
<link href="styles/style.css" rel="stylesheet">
<link href="styles/index.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">


<nav class="nav">
<ul>
<li>
Bio + Skills
</li>
<li>
Code Portfolio
</li>
<li>
Contact
</li>
</ul>
</nav>


<header class="header">
<h1>Sammi-Jo Lee</h1>
<sub>This is what a developer looks like.</sub>
<p><image src="http://via.placeholder.com/400x200" class="mobileHide portraitHide landscapeShow desktopShow" alt="Sammi-Jo Lee name and logo" /></p>

Choose a reason for hiding this comment

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

the tag name is img

<p><image src="http://via.placeholder.com/100x50" class="landscapeHide desktopHide mobileShow portraitShow" alt="Sammi-Jo Lee name and logo"/></p>
</header>


<section class="title">
<p>
I'm Sammi-Jo (they/she). I'm a sofware development student at Ada Developers Academy, a fully-scholarshipped (i.e. free for every student) school for gender minorities located in downtown Seattle, Washington (unceded Duwamish land).
</p>
<p>
In February 2019, I'll start a 5-month internship at one of our sponsoring tech companies.
</p>
<p>
In July 2019, I'll be ready for a job.
</p>
<p>
Follow me on my journey to take on tech.
</p>
</section>

</div>
</body>
</html>
Empty file added portfolio.html
Empty file.
Empty file added styles/about-me.css
Empty file.
Empty file added styles/blog.css
Empty file.
19 changes: 19 additions & 0 deletions styles/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* Page Grid */

.wrapper {
display: grid;
grid-template-areas:
"header"
"title"
"nav";
}

.header {
grid-area: header;
}
.title {
grid-area: title;
}
.nav {
grid-area: nav;
}
Loading