-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.75 KB
/
index.html
File metadata and controls
40 lines (35 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!--Ali_Mongi-WD L1T07 - Capstone Project I-->
<!-- LANDING PAGE of the site welcoming clients -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- inserting of link to bootstrap css sheet -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Kofy | Welcome</title>
<!-- my custom styling sheet -->
<link rel="stylesheet" type="text/css" href="https://alialfa.github.io/hosted-kofy_house/css/coffee-bootstrap.css">
<style>
/* fixed bg image */
body {
background-image: url("https://alialfa.github.io/hosted-kofy_house/images/landing-coffee3.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
</style>
</head>
<body>
<!-- welcoming text with overlay effect applied -->
<div class="landing-welcome">
<div class="landing_overlay">
<br>
<h1> Welcome to Kofy House </h1>
<p>WE’RE THE <b>TRUSTY SPARKPLUG</b><br> ON A COLD WINTER MORNING.<br> THE <b>LAST MATCH IN THE BOX</b><br> THAT GETS DINNER GOING.<br> WE’RE <b>THE DIE-HARD FAN</b><br> SUPPORTING IN THE RAIN.<br> AND THE <b>LONG WARM HUG</b><br> AFTER A LONG DAY.<br> WE DON’T SELL COFFEE, WE SELL<br> <b>BAGS OF ENCOURAGEMENT</b>.</p>
<a class="btn btn-warning" href="https://alialfa.github.io/hosted-kofy_house/pages/home.html" role="button">ENTER KOFY :)</a> <br><br>
</div>
</div>
</body>
</html>