-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiy.html
More file actions
112 lines (103 loc) · 2.73 KB
/
diy.html
File metadata and controls
112 lines (103 loc) · 2.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<style>
.main{
height : 50px;
display : flex;
}
.nav{
border-bottom : 1px solid black;
display : flex;
align-items : left;
margin-bottom : 20px;
}
.new-item{
margin-right: 20px;
}
table{
width : 100%;
}
#header{
width : 100%;
text-align : center;
}
#sch-list{
margin-left:20px;
text-align : middle;
}
#memo-list{
margin-left:20px;
text-align : middle;
}
#buc-list{
margin-left:20px;
text-align : middle;
}
</style>
</head>
<body>
<div class = "main">
<div class = "title">
TRAVEL SPUTNIK
</div>
</div>
<div class="nav">
<div class = "new-item">HOME</div>
<div class = "new-item">DIY</div>
<div class = "new-item">GALLERY</div>
<div class = "new-item">COMMUNITY</div>
</div>
<table border="1">
<tr>
<td>
<div id = "header">
<p> SCHEDULE </p>
</div>
<div id = "sch-list">
<li><input type = "text" name = "list1"></li>
<p></p>
<li><input type = "text" name = "list2"></li>
<p></p>
<li><input type = "text" name = "lis3"></li>
<p></p>
</div>
</td>
<td rowspan="2">
<div id = "header">
<p> BUCKETLIST </p>
</div>
<div id = "buc-list">
<li><input type = "text" name = "list1"></li>
<p></p>
<li><input type = "text" name = "list2"></li>
<p></p>
<li><input type = "text" name = "lis3"></li>
<p></p>
</div>
</td>
</tr>
<tr>
<td>
<div id = "header">
<p> MEMO </p>
</div>
<div id = "memo-list">
<li><input type = "text" name = "list1"></li>
<p></p>
<li><input type = "text" name = "list2"></li>
<p></p>
<li><input type = "text" name = "lis3"></li>
<p></p>
</div>
</td>
</tr>
</table>
</div>
<script src="script.js"></script>
</body>
</html>