-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 1.07 KB
/
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
42
43
44
45
46
47
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COMP70085 CW1</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
{
box-sizing: border-box;
}
.column {
float: left;
width: 45%;
padding: 10px;
//height:300px;
}
.row:after {
content: "";
display: table;
clear: both;
</style>
</head>
<body>
<img src="static/winnie.jpeg" alt="Sample Image" width="100">
<h1 style="background-color:powderblue;">Hello World</h1>
<p style"color:green">Welcome to my webpage!</p>
<p>Link to my GitHub <a href="https://github.com/ongsici" target="_blank">repo</a></p>
<h2>Spot the difference!</h2>
<div class="row">
<div class="column">
<h2>Image 1</h2>
<img src="static/winnie_difference_1.jpg" alt="image1" width="500">
</div>
<div class="column">
<h2>Image 2</h2>
<img src="static/winnie_difference_2_new.jpg" alt="image2" width="500">
</div>
</div>
</body>
</html>