Skip to content

Commit

Permalink
uploading website
Browse files Browse the repository at this point in the history
  • Loading branch information
TONYFABDWAY committed Jan 21, 2024
0 parents commit 4e066a5
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 0 deletions.
Binary file added header.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Startup</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">

<!-- Bootstrap CSS from a CDN. This way you don't have to include the bootstrap file yourself -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<!-- Your own stylesheet -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container d-flex align-items-center h-100">
<div class="row">
<header class="text-center col-12">
<h1 class="text-uppercase"><strong>The Biggest Startup Event Of The Year</strong></h1>
</header>
<div class="buffer col-12"></div>
<section class="text-center col-12">
<hr>
<button class="btn btn-primary btn-xl">Find out more</button>
</section>
</div>
</div>
</body>
</html>
47 changes: 47 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
body,
html {
width: 100%;
height: 100%;
font-family: 'Montserrat', sans-serif;
background: url(header.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

h1 {
font-size: 3rem;
color: #e2dbdb;
}

hr {
border-color: #F05F44;
border-width: 3px;
max-width: 65px;
}

.buffer {
height: 11.4rem;
}

.btn {
font-weight: 700;
border-radius: 500px;
text-transform: uppercase;
}

.btn-primary {
background-color: #F05F44;
border-color: #F05F44;
}

.btn-primary:hover {
background-color: #ee4b08;
border-color: #ee4b08;
border-width: 4px;
}

.btn-xl {
padding: 1rem 2rem;
}

0 comments on commit 4e066a5

Please sign in to comment.