-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage2.html
More file actions
32 lines (31 loc) · 825 Bytes
/
Copy pathimage2.html
File metadata and controls
32 lines (31 loc) · 825 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
<!DOCTYPE html>
<html>
<head>
<title>New Image page</title>
</head>
<body>
<h1>Homepage of my website</h1>
<style>
html{
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: medium;
background-color: rgb(208, 219, 169);
font-weight: bold;
text-align:center;
}
</style>
<!--height-auto == responsive web page-->
<img src ="\images\imagemap.jpg"
alt ="The image"
width ="50%"
height ="auto"
title ="Website banner"
>
<style>
img{
border-radius: 5px;
background-color: rgb(47, 40, 40);
}
</style>
</body>
</html>