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
115 changes: 115 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,118 @@ body {
*/


header {
display: flex;
justify-content: space-between;
text-align: center;
padding: 10px 70px 10px 100px;
align-items: center;
gap:100px
}

.Logo {
width: 40px;
height: 45px;
}
ul {
list-style: none;
display:flex;
gap:60px;
padding-top: 20px;
padding-right: 90px;
color:rgba(rgb(191, 183, 183));
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Did you mean to just write color: rgb(191, 183, 183);?

Also, it is best to use hex codes instead of rgb for most cases.

font-size:120%;
}
li:hover {
color:orange;
}
.row {
display: flex;
}

.orange {
text-align: center;
font-size: 45px;
color: rgb(225, 150, 12);
}
.column {

width: 50%;
}
.box3{
display: flex;
text-align: center;
width: 100%;
margin: auto;
padding: auto;

}
.lastt{
font-size: 35px;
}
.board{
background-color: rgb(244, 229, 227);
padding-left: 250px;
padding-right: 250px;
padding-top: 50px;

}
.box2{

background-size: cover;
background-image: url("/img/first-background.jpg");
width: 100%;
height: 800px;
color: white;
text-align: center;
}

.textin{
padding-top: 250px;
margin: 5px;
}

h3 {
text-align: center;
font-size: 40px;
padding-top: 100px;
}
.logos{
display: flex;
justify-content: center;
gap:250px;
}
button{
background-color: rgb(215, 141, 4);
padding: 10px 30px ;
border-style:edgy;
margin-top: 50px;
}
.icons {
padding-top: 100px;
width: 200px;
}
h2{
font-size: 30px;
}
p{
font-size: 25px;
}
footer{
padding-top: 150px;
text-align: center;
}

li:active {
color: black ;
font-weight: 500;
}
.social-icons {
width: 30px;
gap: 0;
border:2px solid rgb(185, 167, 167);
border-radius: 50%;
padding:20px;
margin-right: 10px;

}
77 changes: 77 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,84 @@
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<a href="/index.html">
<img class="Logo" src="img/karma-logo.svg" alt="Karma Logo">
</a>
<nav>
<ul>
<li><a href="index.html">Meet Karma</a></li>
<li>How it works</li>
<li><a href="store.html">Store</a></li>
<li>Blog</li>
<li>Help</li>
<li>Login</li>
</ul>
</nav>
</header>

<main>
<section class="box2">
<div class="textin">
<h1>Introducing Karma</h1>
<h2>Bring WiFi with you,everywhere you go</h2>
<button class="learnmore">Learn More</button>
</div>
</section>
<section class="box">
<h3>Everyone needs a little Karma.</h3>
<div class="logos">
<div>

<img class="icons" src="img\icon-devices.svg" alt="Devices logo">
<p>Internet for all devices</p>

</div>
<div>

<img class="icons" src="img\icon-coffee.svg" alt="Coffee icon">
<p>Boost your productivity</p>

</div>
<div>

<img class="icons" src="img\icon-refill.svg" alt="Fuel tank">
<p>Pay as You Go</p>

</div>
</div>
</section>
<section class="box3">
<div class="photo">
<img class ="women" src="level-2/homepage-feature.png">
</div>

<div class="board">
<p class="lastt">"Wherever I am, I just don't worry about my connection anymore!"</p>
<button onclick="location.href='store.html'" type="button">
Get Karma Today
</button>
</div>


</section>
</main>

<footer>
<div class="sicons">
<p> Join us on</p>
<a href="www.twitter.com">
<img class="social-icons" src="img\twitter-icon.svg" alt="Twitter logo">
</a>
<a href="www.facebook.com">
<img class="social-icons" src="img\facebook-icon.svg" alt="Facebook icon">
</a>

<a href="www.instagram.com">
<img class="social-icons" src="img\instagram-icon.svg" alt="instagram icon">
</a>
<p class="Karma-inc"">© Karma mobility inc</p>
</footer>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!-- All the images you need are in the 'img' folder -->
Expand Down
64 changes: 64 additions & 0 deletions store.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Store Page</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<a href="/index.html">
<img class="Logo" src="img/karma-logo.svg" alt="Karma Logo">
</a>
<nav>
<ul>
<li><a href="index.html">Meet Karma</a></li>
<li>How it works</li>
<li><a href="store.html">Store</a></li>
<li>Blog</li>
<li>Help</li>
<li>Login</li>
</ul>
</nav>
</header>
<main>
<div class="row">
<div class="column">
<p class="orange"> Order your Karma wifi Device Today!</p>


</div>
<div class="column">
<img src="level-2/store-image_by-andrew-neel-unsplash.jpg" alt="Lady in a desk" style="width:100%">
</div>
</div>

</main>


<footer>
<div class="sicons">
<p> Join us on</p>
<a href="www.twitter.com">
<img class="social-icons" src="img\twitter-icon.svg" alt="Twitter logo">
</a>
<a href="www.facebook.com">
<img class="social-icons" src="img\facebook-icon.svg" alt="Facebook icon">
</a>

<a href="www.instagram.com">
<img class="social-icons" src="img\instagram-icon.svg" alt="instagram icon">
</a>
<p class="Karma-inc"">© Karma mobility inc</p>
</footer>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!-- All the images you need are in the 'img' folder -->

</body>
</html>