forked from ajin009/nodeapp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 836 Bytes
/
index.html
File metadata and controls
36 lines (33 loc) · 836 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Beautiful Node.js Web Application</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
background-color: #f0f0f0;
}
h1 {
color: #007bff;
}
p {
font-size: 18px;
color: #333;
}
img {
max-width: 100%;
height: auto;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Welcome to My Beautiful Node.js Web Application ajin abraham </h1>
<p>This is my first Node.js application created on July 20, 08:5 AM.</p>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRugrXBlGVqi_uWmovWFJPcyBy3I4Mra7viZtdjSYbVAw&s" alt="My Image">
</body>
</html>