forked from Phonbopit/node-express-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 894 Bytes
/
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
<!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>Ahoy</title>
<style>
.container {
display: block;
max-width: 840px;
margin: 0 auto;
}
h2 {
font-size: 6rem;
color: #03484b;
}
.subheading {
color: #222;
font-size: 2rem;
}
p {
color: #222;
}
</style>
</head>
<body>
<div class="container">
<h2>Ahoy!</h2>
<p class="subheading">This is node.js tutorial by devahoy</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas quia provident repellendus natus possimus, vitae consequuntur aliquam. Tempore neque libero eius molestiae. Vel impedit exercitationem magnam vero repudiandae eligendi a!</p>
</div>
</body>
</html>