-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpart2.html
76 lines (72 loc) · 2.71 KB
/
part2.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
<!--===================
Lab 1 Part 2
You don't need to do anything for this lab. This is Jeff's solution to Week 4
Assignment 2, just for your reference. Feel free to take a look at the HTML
below and the CSS in css/style-part2.css. If you tried this assignment, how does
your solution compare?
====================-->
<!DOCTYPE html>
<html>
<head>
<!-- CSS Imports -->
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/grid.css" />
<link rel="stylesheet" href="css/style-part2.css" />
</head>
<body>
<div class="section-main">
<div class="container">
<div class="row">
<div class="column-one-half">
<h1>A Home for your Savings</h1>
<h2>Open a Property ISA today and invest in expertly chosen homes</h2>
<div>
<button class="button button-primary">Get started</button>
or watch the video
</div>
</div>
</div>
</div>
</div>
<div class="section-features">
<div class="container">
<div class="row">
<div class="column-full">
<h3>
Bricklane.com allows a new generation to own a stake in
their city — and reach their savings goals — by investing
in residential property. Start from just £100.
</h3>
</div>
</div>
<div class="row">
<div class="column-full">
<h2>
How it works
</h2>
</div>
</div>
<div class="row">
<div class="column-one-third">
<div class="featured-image">
<img src="http://placehold.it/150x150">
</div>
<p>Invest in a fund of expertly chosen homes, tax-free, with a Property ISA</p>
</div>
<div class="column-one-third">
<div class="featured-image">
<img src="http://placehold.it/150x150">
</div>
<p>See your money change with the properties’ value, and earn rental income</p>
</div>
<div class="column-one-third">
<div class="featured-image">
<img src="http://placehold.it/150x150">
</div>
<p>No notice period — exit by selling your shares to another investor</p>
</div>
</div>
</div>
</div>
</body>
</html>