-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment_Website.html
More file actions
116 lines (111 loc) · 2.2 KB
/
Copy pathAssignment_Website.html
File metadata and controls
116 lines (111 loc) · 2.2 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
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Assignment-AWS-Harshit</title>
<style type="text/css">
body
{
margin: 0;
padding: 0;
}
#firstimg
{
float: left;
width: 300px;
height: 300px;
padding-left: 40px;
}
#firstdiv
{
background-color: #ff8979;
height: 300px;
width: 100%;
}
hr
{
margin: 0;
padding: 0;
}
h1
{
margin: 0;
text-align: center;
padding: 130px 0;
}
#txtone
{
margin: 0;
padding-top: 0;
padding-bottom: 0;
padding-left: 150px;
float: left;
width: 25%;
}
#txttwo
{
margin: 0;
padding-top: 0;
padding-bottom: 0;
padding-right: 0;
float: left;
width: 34%;
}
#txtthree
{
margin: 0;
padding: 0;
float: left;
width: 30%;
}
#seconddiv
{
background-color: orange;
height: 500px;
width: 100%;
}
#secondimg
{
float: left;
width: 30%;
padding-top: 30px;
padding-bottom: 15px;
padding-left: 50px;
width: 350px;
height: 350px;
}
#thirdimg
{
float: left;
width: 30%;
padding-top: 30px;
padding-bottom: 15px;
width: 350px;
height: 350px;
padding-right: 30px;
padding-left: 120px;
}
#fourthimg
{
float: left;
width: 30%;
padding-top: 30px;
padding-bottom: 15px;
padding-left: 100px;
width: 350px;
height: 350px;
}
</style>
</head>
<body>
<div id="firstdiv">
<img id="firstimg" src="https://awsimagefotwebsite.s3.us-east-2.amazonaws.com/Screen+Shot+2019-06-12+at+10.32.09+PM.png" alt="image not found"><h1>This is AWS Training Assigment Website</h1>
</div>
<hr>
<div id="seconddiv">
<img id="secondimg" src="https://awsimagefotwebsite.s3.us-east-2.amazonaws.com/S3.png" alt="image not found">
<img id="thirdimg" src="https://awsimagefotwebsite.s3.us-east-2.amazonaws.com/iam.jpg" alt="image not found">
<img id="fourthimg" src="https://awsimagefotwebsite.s3.us-east-2.amazonaws.com/ec2.png" alt="image not found">
<h3 id="txtone">S3 Bucket</h3><h3 id="txttwo">Identity Access Management</h3><h3 id="txtthree">Elastic Computing</h3>
</div>
</body>
</html>