Skip to content

Done #2824

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 1 commit into
base: master
Choose a base branch
from
Open

Done #2824

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
76 changes: 62 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,64 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram Clone</title>
<!-- don't forget to link your styles -->
</head>
<body>
Instagram Capture and Share the World's Moments 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? Download on the App Store Get it on Google Play About Us Support Blog Press API
Jobs Privacy Terms &copy; 2014 Instagram
</body>
</html>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram Clone</title>
<link rel="stylesheet" href="styles/style.css">
</head>

<body>
<div class="container">
<header>
<img src="./images/phones.png" alt="phone">
</header>

<main>
<section class="logo-container">
<img src="./images/brand.png" alt="Logo Instagram" class="logo-instagram">

<button>
<img src="./images/home.png" alt="home-icon">
Log In
</button>
</section>

<section class="content-container">
<h1>Capture and Share the World's Moments</h1>

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

<p>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.
</p>

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

<section class="button-container">
<img src="./images/badge-iphone.png" alt="badge-iphone">

<img src="./images/badge-android.png" alt="badge-android">
</section>
</main>
</div>

<footer>
<ul class="references-links">
<li><a href="">About Us </a></li>
<li><a href="">Support</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Press</a></li>
<li><a href="">API</a></li>
<li><a href="">Jobs</a></li>
<li><a href="">Privacy</a></li>
<li><a href="">Terms</a></li>
<li>&copy; 2014 Instagram</li>
</ul>
</footer>
</body>

</html>
99 changes: 94 additions & 5 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,99 @@
/*
Colors to use:
dark blue: #06365f
light blue: #1c5380
*/
html {
background: url('../images/bgtile.png');
background-size: 100% 50vh;
background-repeat: no-repeat;

}

body {
font: 200 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
}

.container {
display: flex;
justify-content: space-between;
align-items: center;
}

header {
padding: 100px;
}

main {
display: flex;
flex-direction: column;
padding: 100px 100px 100px 0;
}

.logo-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.logo-instagram {
width: 300px;
}

.logo-container button {
padding: 5px;
width: 90px;
display: flex;
align-items: center;
justify-content: space-around;
color: #fff;
background-color: #1c5380;
border-radius: 3px;
border: 1px solid #fff;
}

.content-container {
background-image: url('../images/frame.png');
background-size: cover;
background-repeat: no-repeat;
width: 100%;
padding: 40px;
}

.content-container h1 {
color: #06365f;
font-size: 1.8rem;
}

.content-container p span {
font-weight: bold;
}

.button-container {
width: 100%;
display: flex;
justify-content: center;
}

.button-container img {
margin: 0 30px;
}

footer {
display: flex;
flex-direction: row;
justify-content: center;
padding: 40px;
}

.references-links {
display: flex;
list-style: none;
width: 100%;
justify-content: space-evenly;
}

.references-links li a {
text-decoration: none;
justify-content: space-between;
color: #1c5380;
font-size: 1.1rem;
font-weight: bold;
}