Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
farouk7484 authored Mar 31, 2020
0 parents commit f5274c1
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
Binary file added image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Italianno&family=Muli:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<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 type="button" class="btn btn-primary btn-xl">find out more!</button>
</section>
</div>
</div>
</body>
</html>
42 changes: 42 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
body,
html{
font-family: 'Italianno', cursive;
width: 100%;
height: 100%;
font-family: 'Italianno', cursive;
font-family: 'Muli', sans-serif;
background: url(image.jpg) no-repeat center center fixed;
background-size: cover;
height: 100%;
overflow: hidden;
}
h1{
font-size: 3em;
color: #e2dbdb;
}
.buffer{
height: 10rem;
}
hr{
border-color: #f05f44;
border-width: 3px;
max-width: 65px;
}
/** modie existing clases of bootstrap **/
.btn{
font-weight: 700;
border-radius: 300px;
text-transform: uppercase;
}
.btn-primary{
background-color: #f05f44;
border-color: #f05f44;
}
.btn-primary:hover{
background-color: #ee4b08;
border-color: #ee4b08;
}
/** new style not bootstrap**/
.btn-xl{
padding: 1rem 2rem;
}

0 comments on commit f5274c1

Please sign in to comment.