-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperty1.html
More file actions
131 lines (96 loc) · 2.62 KB
/
property1.html
File metadata and controls
131 lines (96 loc) · 2.62 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!-- NAME: Apoorva.Lingashettar
CLASS: CS553-A
ASSIGNMENT:4 -->
<html>
<head>
<title>
propert1
</title>
<style>
body
{
background-color: beige;
}
ul li
{
color : coral;
}
ul li span
{
color : black;
}
</style>
</head>
<body>
<div style="text-align: center"> <img src="images/image1.jpg" alt="property1" heigth="270" width="300"></div>
<h4 style="margin: 37px" "background-color: burlywood">
Description:
</h4>
<p style="margin: 37px" >
<blockquote>
This character filled Silvermine colonial offers picturesque views of a scenic pond at the base of the river. Originally built in the 20s, the
home features a great family room built off formal living room with fireplace plus a sunken den with stone floors and gas fireplace. Both the
eat in kitchen and formal dining room overlook a two tier deck with serene water views. There is a legal studio apartment over the detached two
car garage currently rented. A unique offering for those looking for a home with charm.
</blockquote>
</p>
<hr color="coral">
<h4 style="margin: 37px" >Features:</h4>
<div style="float: left">
<ul style="margin: 37px; margin-top:-3px">
<li><span>Bed: 3</span></li>
<li><span>House Size: 14000 sqft</span></li>
<li><span>Price: $550,000</span></li>
<li><span>Property Type: Single Family Home</span></li>
</ul>
</div>
<div style="float: left">
<ul style="margin: 37px; margin-top:-3px">
<li><span>Baths: 2 and Half</span></li>
<li><span>Garage: 3 Car Garage</span></li>
<li><span>Year of Built: 1988</span></li>
<li><span>Neighbourhood: Broad River </span></li>
</ul>
</div>
<!-- <div style="float: left">
<table style="margin: 37px" cellpadding="4">
<tr>
<td>Bed</td>
<td>3</td>
</tr>
<tr>
<td>House Size</td>
<td>14000 sqft</td>
</tr>
<tr>
<td>Price</td>
<td>$550,000</td>
</tr>
<tr>
<td>Property Type</td>
<td>Single Family Home</td>
</tr>
</table>
</div>
<div style="float: left">
<table style="margin: 37px" cellpadding="4" >
<tr>
<td>Baths</td>
<td>2 and half</td>
</tr>
<tr>
<td>Garage</td>
<td>2 Car Garage</td>
</tr>
<tr>
<td>Year Of Built</td>
<td>1998</td>
</tr>
<tr>
<td>Neighbourhood</td>
<td>Broad River</td>
</tr>
</table>
</div>-->
</body>
</html>