-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (82 loc) · 2.23 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
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
<!DOCTYPE html>
<html>
<head>
<title>House Builder</title>
<link href="https://fonts.googleapis.com/css?family=Abel|Amatic+SC|Raleway:100,200,300,400,500,600,700,800,900" rel="stylesheet"> <!-- Fonts -->
<link rel="stylesheet" type="text/css" href="style.css"> <!-- CSS file -->
<script src='script.js' async></script> <!-- JS file -->
</head>
<body>
<div class="navigation">
<ul>
<li id="logo">Kostia's House Builder</li>
</ul>
</div>
<div id="cover">
<div class="cover-content">
<h1>Houses Built Just For You</h1>
<h2>Beautifully built houses for any style or type of person.</h2>
<a href="#Build" class="button">Let's Start Building!</a>
<a href="#Latest" class="button">Latest Houses</a>
<p><a name="Build"</a></p>
</div>
</div>
<div class="products">
<p><a name="Build"</a></p>
<h3 class="blue">Build your own house</h3>
<div class="building">
<form>
<table>
<!--Color-->
<tr>
<td>Color</td>
<td>
<input name="color" type="text">
</td>
</tr>
<!--Area-->
<tr>
<td>Area</td>
<td>
<input name="area" type="number">
</td>
</tr>
<!--Material-->
<tr>
<td>Material</td>
<td>
<input name="material" type="text">
</td>
</tr>
<!--Price-->
<tr>
<td>Price:</td>
<td>
<output name="price"></output>
</td>
</tr>
</table>
<input type="button" id='Build_button' class='button' onclick="calculate(this.form)" value="Build"> <!-- Build button -->
</form>
</div>
</div>
<!-- Examples of latest built houses -->
<div class="products">
<div>
<p><a name="Latest"</a></p>
</div>
<h3 class="blue">Latest houses</h3>
<div class="building">
<img src="img/house0.jpg">
<h3>London, UK</h3>
<p>11 rooms, multiple windows. Perfect for the big happy family.</p>
</div>
<div class="building">
<img src="img/house1.jpg">
<h3>Los Angeles, US</h3>
<p>Panoramic windows, huge garage. Excellent one.If you are bachelor ;)</p>
</div>
</div>
<h3>All our houses are built with love in Kharkiv, Ukraine</h3>
</body>
</html>