-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.43 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
<!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>Basic landing page</title>
<link rel="stylesheet" href="./assets/css/main.css" />
</head>
<body>
<header class="landing-area">
<div class="background"></div>
<section class="content">
<div class="content__image content__image--is-rounded">
<img src="phantom.gif" alt="Profil picture" />
</div>
<h1 class="content__title">Basic landing page</h1>
<p class="content__description">
A lightweight landing page built using flexbox. All wallpapers come
from
<a
rel="noreferrer noopener"
href="https://unsplash.com/"
target="_blank"
>Unsplash.com</a
>
</p>
</section>
<section class="footer">
<p>
Background from
<a
rel="noopener noreferrer"
href="https://unsplash.com/"
target="_blank"
>Unsplash</a
>
| Project under
<a
rel="noopener noreferrer"
href="https://github.com/LucasCtrl/Basic-landing-page/blob/master/LICENSE"
target="_blank"
>MIT license</a
>
</p>
</section>
</header>
</body>
</html>