-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProperties_Update.html
88 lines (76 loc) · 2.27 KB
/
Properties_Update.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
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
<!DOCTYPE html>
<html>
<head>
<title>Featured Properties</title>
<style>
img
{
width: 70%;
border-top-right-radius: 60px;
border-bottom-left-radius: 60px;
}
#container
{
display: flex;
}
h1
{
font-family: Montserrat;
font-size: 3em;
font-weight: bold;
color: blue;
text-align: center;
}
h2
{
font-family: Ubuntu;
color: blue;
text-align: center;
}
p
{
font-family: Ubuntu;
text-align: center;
}
h2:hover
{
font-weight: bold;
color: brown;
}
li
{
text-align: center;
}
</style>
</head>
<body>
<h1>Our Featured Properties</h1>
<p>Luxurious with incredible views over the city</p>
<div id="container">
<div id="one">
<img src="house1.jpg.jpg"/>
<h2>Gold Stone</h2>
<ul class="africa">
<li><tr><td>Location:</td> <td>Nigeria</td></tr></li>
<li><tr><td>Price:</td> <td>470million</td></tr></li>
</ul>
</div>
<div id="two">
<img src="house2.jpg.jpg"/>
<h2>Siver Stone</h2>
<ul class="NA">
<li><tr><td>Location:</td> <td>NYC</td></tr></li>
<li><tr><td>Price:</td> <td>$90,000</td></tr></li>
</ul>
</div>
<div id="three">
<img src="house3.jpg.jpg"/>
<h2>Bronze Stone</h2>
<ul class="asia">
<li><tr><td>Location:</td> <td>Korea</td></tr></li>
<li><tr><td>Price:</td> <td>500,000won</td></tr></li>
</ul>
</div>
</div>
</body>
</html>