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
Binary file added image/Screenshot 2024-03-04 151331.png
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 image/background.png
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 image/boolean-img.png
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 image/boolean.png
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 image/content.png
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 images/bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 29 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,36 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />

<link rel="stylesheet" href="style.css" />
</head>
<body>

<header>
<nav>
<div class="navbar">
<div class="logo">
<img src="image/boolean-img.png" style="width: 20%"/>
</div>
<ul class="menu">
<li><a href="#"></a>Courses</li>
<li><a href="#"></a>Academy</li>
<li><a href="#"></a>Companies</li>
<li><a href="#"></a>Events</li>
<li><a href="#"></a>Blog</li>
</ul>
<div class="button">
<h3><a href="https://boolean.co.uk/apply">Apply now</a></h3>
</div>
</div>
</nav>
<div class="content">
<p><h2>Join Boolean</h2></p>
<p><h1>The online tech <br/> academy that will <br/>kickstart your career</h1></p>
<p><h4>Learn everything you need to become a tech <br/>professional with live online classes and only pay <br/>tuition once you're hired.</h4></p>
<p><h3><a href="https://boolean.co.uk/apply">Apply now</a></h3></p>
<div class="image">
<img src="image/content.png" style="width: 195%;"/>
</div>
</div>
</header>
</body>
</html>
67 changes: 67 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body{
height: 100%;
width: 100vh;
background: url("image/boolean-img.png") no-repeat;
background-size: cover;
background-position: center;
}
header nav{
position: fixed;
left: 0;
top: 0;
width: 100%;
background: #022235;
}
nav .navbar{
width: 95%;
background: #3ecf6a;
display: flex;
align-items: center;
justify-content: space-between;
margin: 20px auto 20px auto;
}
.navbar .menu{
display: flex;
}
.navbar .menu li{
list-style: none;
margin: 0 10px;
}
.menu li a:hover{
color: #000;
}
.navbar .button{
position: relative;
height: 25px;
width: 95px;
}
.button{
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
outline: none;
border: 2px solid #0a7cda;
border-radius: 15px;
padding: 0 10px
}
.content{
position: absolute;
top: 43%;
left: 12%;
line-height: 35px;
margin-bottom: 30px;
}
.image{
position: absolute;
top: -40%;
left: 215%;
height: 100%;
width: 30vh;
}