-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (56 loc) · 2.59 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="template site">
<meta name="author" content="CasjaysDev">
<meta name="generator" content="CasjaysDev">
<link rel="canonical" href="/">
<!-- font -->
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300i,400,700&display=swap" rel="stylesheet">
<!-- fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap core CSS -->
<link href="/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Favicons -->
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png" sizes="180x180">
<link rel="icon" href="/images/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="icon" href="/images/favicon-16x16.png" sizes="16x16" type="image/png">
<link rel="manifest" href="/images/manifest.json">
<link rel="mask-icon" href="/images/safari-pinned-tab.svg" color="#7952b3">
<link rel="icon" href="/images/favicon.ico">
<meta name="theme-color" content="#7952b3">
<!-- Custom styles for this template -->
<link href="/css/main.css" rel="stylesheet">
<link href="/css/cover.css" rel="stylesheet">
<title>Template · Bootstrap v5.0</title>
</head>
<body class="d-flex h-100 text-center text-white bg-dark">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h3 class="float-md-start mb-0"><img src="./images/favicon-32x32.png" /></h3>
<nav class="nav nav-masthead justify-content-center float-md-end">
<a class="nav-link active" aria-current="page" href="./">Home</a>
<a class="nav-link" href="./features.html">Features</a>
<a class="nav-link" href="./contact.html">Contact</a>
</nav>
</div>
</header>
<main class="px-3">
<h1>Welcome to template</h1>
<p class="lead">Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt, enim quos a ad sequi numquam,
officiis adipisci exercitationem ducimus minima dicta perspiciatis vitae sed? Earum sapiente rem distinctio
nesciunt aliquid.</p>
<p class="lead">
<a href="#" class="btn btn-lg btn-secondary fw-bold border-white bg-white">Learn more</a>
</p>
</main>
<footer class="mt-auto text-white-50">
<p>Copyright 2021 - author</p>
</footer>
</div>
</body>
</html>