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
1 change: 1 addition & 0 deletions assets/icons/favorite-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/menu-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/more_vert.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/search-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apps bar top</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<nav class="nav">
<section class="nav__left">
<img src="./assets/icons/menu-white.svg" alt="icono menu">
<h3>Page title</h3>
</section>
<section class="nav__right">
<img src="./assets/icons/favorite-white.svg" alt="">
<img src="./assets/icons/search-white.svg" alt="">
<img src="./assets/icons/more_vert.svg" alt="">
</section>
</nav>
</body>
</html>
25 changes: 25 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
body{
margin: 0;
box-sizing: border-box;
}
* img{
padding: 0px 10px;
width: 25px;
}
.nav{
background-color: #503ed6;
display: flex;
height: 80px;
justify-content: space-between;
padding: 0px 20px;
}
.nav__left{
display: flex;
align-items: center;
}
.nav__right{
display: flex;
}
h3{
color: white;
}