-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (73 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BOX MODEL LAYOUTS</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- LAYOUT 1 -->
<div class="main-container">
<!-- LEFT SECTION -->
<div class="left-section">
</div>
<!-- RIGHT SECTION -->
<div class="right-section">
<!-- ROW 1 -->
<div class="row-1">
<h2 style="text-align: center;">ICELAND</h2><br>
<p>Iceland, a Nordic island nation, is defined by its dramatic landscape with volcanoes, geysers, hot springs and lava fields. Massive glaciers are protected in Vatnajökull and Snæfellsjökull national parks.</p>
</div>
<!-- ROW 2 -->
<div class="row-2">
<!-- ROW2-COL1 -->
<div class="row2-col1">
</div>
<!-- ROW2-COL2 -->
<div class="row2-col2">
</div>
</div>
<!-- ROW 3 -->
<div class="row-3">
<h2 style="text-align: center;">Join us to Explore!</h2><br>
<form>
<label for="name">Name</label>
<input type="text" id="name">
<label for="email">Email</label>
<input type="email" id="email"><br><br>
<button>I want to be a part of it</button>
</form>
</div>
</div>
</div>
<!-- LAYOUT 2 -->
<h1>New Layout</h1>
<div class="container2">
<div class="section1">
<div class="section1-c1">
</div>
<div class="section1-c2">
</div>
</div>
<div class="section2">
</div>
<div class="section3">
<div class="section3-c1">
<div class="section-c1-s1">
</div>
<div class="section-c1-s2">
</div>
</div>
<div class="section3-c2">
</div>
<div class="section3-c3">
<div class="section-c3-s1">
</div>
<div class="section-c3-s2">
</div>
</div>
</div>
</div>
</body>
</html>