-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.32 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.32 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>alaashaker.com</title>
<!-- <meta name="author" content="name"> -->
<!-- <meta name="description" content="description here"> -->
<!-- <meta name="keywords" content="keywords,here"> -->
<!-- <link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon"> -->
<!-- <link rel="stylesheet" href="//fonts.googleapis.com/css?family=font1|font2|etc" type="text/css"> -->
<!-- <link rel="stylesheet" href="normalize.css" type="text/css"> -->
<!-- <link rel="stylesheet" href="styles.css" type="text/css"> -->
<style>
body {
font-family: monospace, sans-serif;
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
}
.content {
display: flex;
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
}
h1 {
font-size: 14px;
color: #CCC;
font-weight: normal;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div class="content">
<h1 class="text">
alaashaker.com
</h1>
</div>
<!-- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> -->
<!-- <script src="app.js" type="text/javascript"></script> -->
</body>
</html>