-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.16 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
<!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">
<meta name="og:title" property="og:title" content="HTML Basic">
<meta name="description"
content="A Prototyping playground for developers that has all the basic front end stuff setup to test out their components.">
<meta property="og:image" content="#">
<meta property="og:url" content="#">
<title>HTML Basic</title>
<!-- Row Styles -->
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/styles.css">
<link rel="shortcut icon" href="#">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<div id="main">
<center style="padding:20px 0 0 0;">
<h1><i class="fa fa-user fa-5x"></i> Content here</h1>
</center>
</div>
<footer>
footer
</footer>
</div>
<!-- Row Scripts -->
<script src="./js/app.js" defer></script>
<script src="https://kit.fontawesome.com/e33b567028.js" defer></script>
</body>
</html>