-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
farouk7484
authored
Mar 31, 2020
0 parents
commit f5274c1
Showing
3 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |