-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
154 lines (148 loc) · 3.01 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!doctype html>
<html>
<head>
<title>SOJU PENSION</title>
<meta charset="utf-8">
<style>
@media (max-width: 650px){
#grid {
font-size: xx-small;
display : inline;
}
ul {
border-bottom: none;
}
li {
border-left: none;
}
}
a{
color : black;
text-decoration : none;
text-align: center;
color : gainsboro;
}
h1{
text-align: left;
font-size: x-large;
color : whitesmoke;
display: inline;
padding-left: 70px;
}
ul{
padding : 7px;
display: inline;
color : gainsboro;
text-align: right;
}
li{
display: inline;
padding-left: 1%;
padding-right: 1%;
border-left: 1px gray solid;
color : gainsboro;
}
h6 {
font-size: initial;
margin-right: 10px;
padding-left: 70px;
}
h2 {
font-size: 100px;
font-weight: bold;
margin: 10px;
padding-left: 50px;
margin-right: 20px;
}
p{
padding-top: 60px;
}
h4 {
margin-top : 500px;
padding-left: 100px;
font-size: initial;
}
.box1{
display: grid;
grid-template-columns: 250px 1fr;
}
.box1 ul li:first-child{
border-left : none;
}
body {
color : whitesmoke;
background-color: black;
}
#id1 {
padding-top: 100px;
padding-bottom: 100px;
padding-left: 30px;
padding-right: 30px;
}
.box2 {
display: grid;
grid-template-columns: 400px 1fr 400px;
position: relative;
}
h3 {
font-size: 100px;
}
.box3 {
position: absolute;
top : 30%;
left: 50%;
}
</style>
</head>
<body>
<div class="box1">
<h1><a href = "index.html" style="font-weight: bold;">SOJU project</a></h1>
<ul>
<li><a href = "information.html" >ABOUT</a></li>
<li><a href = "reservation.html" >RESERVATION</a></li>
<li><a href ="room1.html">FACILITY</a></li>
<li><a href = "review.html">REVIEW</a></li>
</ul>
</div>
<div class = "boxA">
<div class = "box2">
<div class = "left">
<h6>
<br><br><br><br><br><br><br>
small hope
<br>
small happiness
<br>
small chance
<br><br><br><br><br><br><br>
</h6>
<h2>
05
</h2>
<h2 style="color: grey;">
05
</h2>
<h6><u>View All Rooms</u></h6>
</div>
<div class ="middle">
<p>
<img src = "lina-castaneda-qbpZpbVoJZw-unsplash.jpg" style="width: 425px;" style="height: 632px;">
</p>
</div>
<div class ="right">
<h4>
The Ancient Tower dares, <br>
experiments and discovers its <br>
modernity <br>
</h4>
</div>
</div>
<div class = "box3">
<h3>
Cathedral's <br>
Tower
</h3>
</div>
</div>
</body>
</html>