Skip to content
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

Solve Tugas Bryant Nathaniel Tanujaya #53

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Binary file added tugas/pelatihan-vcs-2023/bryant/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions tugas/pelatihan-vcs-2023/bryant/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BLABLABLA</title>
<link rel="stylesheet" href="styles.css"

<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="logo.jpg" class="logo">
<nav>
<ul>
<li><a href="">HOME</a></li>
<li><a href="">REGION</a></li>
<li><a href="">ABOUT</a></li>
</ul>
</nav>
<img src="menu.jpg" class="menu-icon">
</div>

<div class="row">
<div class="col">
<h1>Kaela</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Assumenda eum explicabo tempore accusamus. Deleniti, sit ea totam commodi dolorum eaque nihil, dolore possimus veniam nam harum, necessitatibus dolorem. Fugit, accusamus.</p>
<button type="button">Explore</button>

</div>
<div class="col">
</div>
</div>
</div>


</div>


</body>
</html>
Binary file added tugas/pelatihan-vcs-2023/bryant/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tugas/pelatihan-vcs-2023/bryant/menu.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 85 additions & 0 deletions tugas/pelatihan-vcs-2023/bryant/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
*{
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}

.container{
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(background.jpg);
background-position: center;
background-size: cover;
padding-left: 8%;
padding-right: 8%;
box-sizing: border-box;
}

.navbar{
height: 12%;
display: flex;
align-items: center;
}

.logo{
width: 50px;
cursor: pointer;
}

.menu-icon{
width: 30px;
cursor: pointer;
margin-left: 40px;
}

nav{
flex: 1;
text-align: right;
}

nav ul li{
list-style: none;
display: inline-block;
margin-left: 60px;
}

nav ul li a{
text-decoration: none;
color: #fff;
font-size: 13px;

}

.row{
display: flex;
height: 88%;
align-items: center;

}

.col{
flex-basis: 50%;
}

h1{
color :#fff;
font-size: 100px;
}

p{
color: #fff;
font-size: 11px;
line-height: 15px;
}

button{
width: 180px;
color: #000;
font-size: 12px;
padding: 12px;
background: #fff;
border: 0;
border-radius: 20px;
outline: none;
margin-top: 30px;
}