forked from Sameer-8080/AWSDevOps-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
95 lines (86 loc) · 2.67 KB
/
index.php
File metadata and controls
95 lines (86 loc) · 2.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Intellipaat EC2 Server</title>
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-attachment: fixed;
background-image: url(https://raw.githubusercontent.com/Kodeedudey/AWS-DevOps-Project/master/back.jpg);
}
header {
background-color: brown;
padding: 10px;
text-align: center;
font-size: 35px;
color: white;
}
nav {
float: left;
width: 20%;
height: 300px;
background: #ccc;
padding: 20px;
}
nav ul {
list-style-type: none;
padding: 0;
}
article {
float: left;
padding: 20px;
width: 80%;
background-color: #f1f1f1;
height: 300px; /* only for demonstration, should be removed */
}
section:after {
content: "";
display: table;
clear: both;
}
h1 {
color: whitesmoke;
}
figure {
display: flex;
align-items: center;
}
figure p {
text-align: center;
}
</style>
</head>
<body>
<h1 align="center">Welcome to Intellipaat</h1>
<header>
<h2>Intellipaat Server Example</h2>
</header>
<section>
<nav>
<ul>
<li><a href="https://intellipaat.com/tutorial/hadoop-tutorial/">Hadoop</a></li>
<li><a href="https://intellipaat.com/tutorial/amazon-web-services-aws-tutorial/">AWS</a></li>
<li><a href="https://intellipaat.com/tutorial/data-science-tutorial/">Data Science</a></li>
</ul>
</nav>
<article>
<figure>
<img src="https://raw.githubusercontent.com/Sameer-8080/aws-devops-project/main/aws.gif" width="1800" height="250">
<div align="center">
<p>
<?php
// PHP code can go here
echo "Amazon Web Services is the world’s biggest cloud provider which is owned by Amazon. They provide a set of on-demand services to the customers via the internet or 'The Cloud'. Also, you get a pay-as-you-go option where you need to only pay for what you use.";
?>
</p>
</div>
</figure>
</article>
</section>
</body>
</html>