-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.51 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>CSS Framework | Home</title>
<link rel="stylesheet" href="./index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
/>
<link rel="stylesheet" href="bootstrap-4.3.1-dist/css/bootstrap.min.css" />
</head>
<body>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">Hello World !</h1>
<p class="lead">This is my project about CSS frameworks. I have 3 CSS frameworks design. Please click below for see detail of the design.</p>
<p class="lead">
<a href="./bootstrap.html" class="btn btn-lg btn-secondary">Bootstrap</a>
<a href="./bulma.html" class="btn btn-lg btn-secondary">Bulma</a>
<a href="./materialize.html" class="btn btn-lg btn-secondary">Materialize</a>
</p>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Created by <a href="https://egasharfina.netlify.com">@egasharfina 2019</a>.</p>
</div>
</footer>
</div>
</body>
</html>