-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (75 loc) · 2.31 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Use your own favicon -->
<!-- Current one is generted via https://favicon.io/favicon-generator -->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<!-- Template Dev Credentials. Feel free to remove. -->
<script src="./dev.js" defer></script>
<!-- GitHub Fork Ribbon. Feel free to remove. -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
<script src="./ribbon.js" defer></script>
<title>Your Project Name</title>
<style>
body {
align-items: center;
/* Use your image URL*/
/* For preview we use https://picsum.photos API to get photos from https://unsplash.com */
background: url('https://picsum.photos/1200/800') no-repeat center center fixed;
background-size: cover;
display: flex;
flex-direction: column;
font-family: Arial, sans-serif;
height: 100vh;
justify-content: center;
margin: 0;
padding: 0;
position: relative;
}
body::before {
background: rgba(0, 0, 0, 0.5);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.content {
color: white;
text-align: center;
z-index: 1;
}
h1 {
font-size: 36px;
margin: 0;
}
p {
font-size: 22px;
margin: 10px 0;
}
a {
color: white;
font-weight: bold;
margin: 5px;
text-decoration: none;
}
</style>
</head>
<body>
<div class="content">
<h1>Your Project / Site Name</h1>
<p>Description of project</p>
<div>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
</body>
</html>