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
146 changes: 146 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,151 @@ body {
*
* - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
*/
.icon_log{
width: 50px;
height: 50px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}

.nav_link{
display: flex;
justify-content: center;
align-items: center;
width: 700px;
margin-left: 50%;
height: 80px;
justify-content: space-between;
}


.nav{
display: flex;
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
/* background-color: rgb(236, 232, 232); */

}

li a {
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

li a:hover {
background-color: #111;
}
.body1{
display: flex;
flex-direction: column;
align-content: flex-end;
height: 400px;
margin: 60px;
padding: 40px;
background-image: url("../img/first-background.jpg");
background-repeat: no-repeat;

}

.data_body{
margin-top: 100px;
display: flex;
flex-direction: column;
align-items: center;
color: white;
justify-content: center;
}
button{
background-color: rgb(233, 55, 55);
}


.timo{
display: flex;
justify-content: center;

}

.body2{
height: 400px;
margin: 60px;
padding: 0px;
align-items: center;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;

}
.img_1{
width: 100px;
height: 100px;
}

.img3{
display: flex;
justify-content:space-between;
flex-direction: row;
width: 500px;


}
.icon3{
display:flex;
padding: 7px ;
justify-content: space-around;
width: 60px;
height: 60px;
border-radius: 70px;
justify-content: center;

}



.body3{
height: auto;
margin: auto;
padding: 40px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;


}

.icon_3{
display: flex;
margin-left: 50px;
justify-content: space-between;
justify-content: center;
width: 500px;
height: 70px;
padding-right: 50px;
}


.t3{
display: flex;
justify-content: center;
}

.h1_foot{
display: flex;
justify-content: center;
width: 500px;
}



64 changes: 59 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,73 @@
<!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>Karma</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">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>

<body>
<div class="nav">
<img class="icon_log" src="/img/karma-logo.svg" alt="image here">
<div class="nav_link">

<a href="#">Meet Karma</a>
<a href="#">How it works</a>
<a href="#">Store</a>
<a href="#">Blog</a>
<a href="#">Help</a>
<a href="#">Login</a>
</nav>
</div>
</div>
<div class="body1">
<div class="data_body">
<h1>Interducing Karma</h1>
<h2>Bring WiFi With you Every Where you go.</h2>
<button herf="#">learn More</button>

</div>

</div>

<!-- 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 -->
<div class="body2 ">
<h1> Every One Need a Little Krama</h1>
<section class="img3">

<div class="img_1">
<img src="/img/icon-devices.svg" alt="image here">
<p>Internet For all Devices</p>
</div>
<div class="img_1">
<img src="/img/icon-coffee.svg" alt="image here">
<p>Boost Your productivity</p>
</div>

<div class="img_1">
<img src="/img/icon-refill.svg" alt="image here">
<p>Pay as You Go</p>
</div>
</section>

</div>
<div class="timo">
<div class="body3">
<h1 class="t3">Join Us On </h1>
<div class="icon_3">
<img src="/img/twitter-icon.svg" alt="image here" class="icon3">
<img src="/img/facebook-icon.svg" alt="image here" class="icon3">
<img src="/img/instagram-icon.svg" alt="image here" class="icon3">
</div>
<div class="h1_foot">
<h1>Karma Mobility,Inc.</h1>
</div>
</div>
</div>
</body>
</html>

</html>