Skip to content

Charlotte Kwan #7

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

Open
wants to merge 2 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
Binary file added .DS_Store
Binary file not shown.
Binary file added starter-code/.DS_Store
Binary file not shown.
Binary file added starter-code/css/.DS_Store
Binary file not shown.
23 changes: 23 additions & 0 deletions starter-code/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,30 @@ dark blue: #06365f
light blue: #1c5380
*/

/*Body CSS*/
body {
font: 200 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
background: #fff url("../images/bgtile.png") repeat-x;
}

/*Main CSS*/
main{
width: 880px;
margin: 150px auto 0;
}

main section.section-left {
float: left;
width: 500px;
}

main section.section-right {
float: right;
width: 500px;
}

main section.section-right article {
background: url("../images/frame.png") no-repeat;
padding: 40px;
}
Binary file added starter-code/images/.DS_Store
Binary file not shown.
71 changes: 55 additions & 16 deletions starter-code/index.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Comptaible" content="IE=edge">

<title>Instagram</title>

<link rel="stylesheet" href="css/main.css">

</head>

<body>
Instagram

Capture and Share the World's Moments
<main>

<section class="section-left">

<img src="images/phones.png" alt="phone picture" id="phone">

</section>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<section class="section-right">
<nav>

Take a picture or video, choose a filter to transform its look and feel, then post to Instagram &mdash; it's that easy. You can even share to Facebook, Twitter, Tumblr and more. It's a new way to see the world.
<img src="images/brand.png" alt="logo" id="logo">

Oh yeah, did we mention it's free?
<button>

Download on the App Store
Get it on Google Play
<img src="x" alt="home button"><span>Login</span>

</button>

</nav>

<article>
<h1> Capture and Share<br>the World's Moments</h2>

<p> Instagram is a fast, beautiful and fun way to share your life with friends and family.

Take a picture or video, choose a filter to transform its look and feel, then post to Instagram &mdash; it's that easy. You can even share to Facebook, Twitter, Tumblr and more. It's a new way to see the world.

Oh yeah, did we mention it's free?
</p>

<a href="#"><img src="images/badge-iphone.png" alt="Down on the App Store"></a>
<a href=""><img src="images/badge-android.png" alt="Get it on Google Play"></a>
</article>
</section>
</main>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms

&copy; 2014 Instagram
</body>

<footer>
<nav>
About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
<p class="copyright"> &copy; 2014 Instagram </p>
</nav>
</footer>
</html>