-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (88 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
108 lines (88 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AWS DevOps Assignment</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}
body{
background:#f4f6f9;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}
.container{
background:#ffffff;
width:600px;
padding:35px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
h1{
text-align:center;
color:#232f3e;
margin-bottom:25px;
}
table{
width:100%;
border-collapse:collapse;
font-size:18px;
}
td{
padding:10px 5px;
}
td:first-child{
font-weight:bold;
width:180px;
color:#333;
}
hr{
margin:25px 0;
}
.footer{
text-align:center;
color:#555;
font-size:17px;
font-weight:bold;
}
</style>
</head>
<body>
<div class="container">
<h1>AWS DevOps Assignment</h1>
<table>
<tr>
<td>Name</td>
<td>: Jai Dev</td>
</tr>
<tr>
<td>College</td>
<td>: I.K. Gujral Punjab Technical University</td>
</tr>
<tr>
<td>Branch</td>
<td>: Computer Science and Engineering</td>
</tr>
<tr>
<td>Email</td>
<td>: jaidevvalmiki2244@gmail.com</td>
</tr>
<tr>
<td>Current Date</td>
<td>: 10 July 2026</td>
</tr>
</table>
<hr>
<div class="footer">
Website hosted on AWS EC2 using Nginx
</div>
</div>
</body>
</html>