Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
85 changes: 85 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,93 @@
body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;

}
/*Header*/

.karam-logo{
width: 30px;
margin-left: 4em;
}
.nav{display: flex;
float: right;
margin-right: 3em;}

.nav-link {text-decoration: none;
color: black;
padding-left: 2em;}

.nav-item{
display: inline;
list-style-type: none;
}
.nav-link:hover{color: orangered;}
/*hero*/
.hero{
padding: 200px;
background-size: cover;
background-image: url("/img/first-background.jpg");
}
.hero h1{
margin-left: 340px;
color:white;
}
.hero p{
margin-left: 280px;
font-size: 20px;
margin-top: 0px;
color:white;}

.hero-button{
padding: 0.4em 1em;
border-style: none;
border-radius: 2px;
background-color: orangered;
color: white;
margin-left: 400px;}
/*icon*/

.section{
margin-top: 80px;}
.section-p{
font-size: 38px;
text-align: center;

}
.icon-imag{
margin-left: 3em;
width: 100px;}
.icon-discribtion{
font-size: 20px;
}
.section-icon{
display: flex;
padding-left: 7em;

}
.section-icon div{
padding-left: 7em;
padding-bottom: 3em;
border-bottom: 1px solid rgb(184, 180, 180);
}
/*footer*/
.social-media-icon{
border: 1px solid rgb(185, 179, 179);
padding: 5px;
width: 30px;
border-radius: 25px;
margin-left: 7px;
cursor: pointer;
}

footer h3{
text-align: center;

}
footer p{
color: rgb(178, 177, 177);
text-align: center;
}
/**
* Add your custom styles below
*
Expand Down
67 changes: 67 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,74 @@
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header class="header">
<img class="karam-logo" src="img/karma-logo.svg" alt="picture of karam logo">
<nav class="nav">
<ul class="nav-list">

<li class="nav-item">
<a class="nav-link" href="#">Meet Karma</a> </li>
Copy link

Choose a reason for hiding this comment

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

This should be in black, while the other links should be in grey


<li class="nav-item">
<a class="nav-link" href="#">How it Works </a> </li>

<li class="nav-item">
<a class="nav-link" href="#">Store</a> </li>

<li class="nav-item">
<a class="nav-link" href="#">Blog</a> </li>

<li class="nav-item">
<a class="nav-link" href="#">Help</a> </li>

<li class="nav-item">
<a class="nav-link" href="#">Login</a> </li>
</ul>
</nav>

</header>

<main>
<div class="hero">
<div>
<h1>introducing Karma</h1>
<p>Bring WiFi with you, everywhere you go.</p>
<button class="hero-button">Learn More</button>

</div>
</div>
</main>

<section class="section">
<p class="section-p">Everyone needs a little Karma.</p>

<div class="section-icon">
<div>
<img class="icon-imag" src="img/icon-devices.svg" alt="device picture">
<p class="icon-discribtion">internet for all devices</p>
</div>

<div>
<img class="icon-imag" src="img/icon-coffee.svg" alt="icon coffee picture">
<p class="icon-discribtion">Boost your productivity</p>
</div>

<div>
<img class="icon-imag" src="img/icon-refill.svg" alt="icon coffee picture">
<p class="icon-discribtion">Pay as You Go </p>
</div>
</div>
</section>

<footer>
<h3>Join us on</h3>
<center>
<img class="social-media-icon" src="img/twitter-icon.svg" alt="twitter icon">
<img class="social-media-icon" src="img/facebook-icon.svg" alt="facebook icon">
<img class="social-media-icon" src="img/instagram-icon.svg" alt="instagram icon">
</center>
<P>@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