-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
120 lines (106 loc) · 3.87 KB
/
test.html
File metadata and controls
120 lines (106 loc) · 3.87 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
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="ko">
<head>
<title>Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" ></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style>
#img_profole{
width: 150px;
height: 150px;
}
.bg-main{
background-color: rgb(255, 90, 90);
color: rgb(255, 255, 255);
font-weight: bold;
padding-top: 200px;
padding-bottom: 200px;
}
.bg-sub{
background-color: #8bbb63;
color: #ffffff;
padding-top: 70px;
padding-bottom: 70px;
}
.bg-sub2{
background-color: #ffffff;
color: #999999;
padding-top: 70px;
padding-bottom: 100px;
font-size: 14px;
}
</style>
<style>
.footer{
background-color: #333333;
color: #cccccc;
padding-top: 70px;
padding-bottom: 50px;
font-size: 12px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Tomato</a>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Top</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Infomation</a>
</li>
</ul>
</div>
</nav>
<div class="container_fluid text-center bg-main">
<p>Tomato</p>
<a href="https://namu.wiki/w/%ED%86%A0%EB%A7%88%ED%86%A0" title="토마토" target="_blank">
<img src="./img/tomato.png" id="img_profole">
</a>
<p>Very Delicoius</p>
</div>
<div class="contaniner-fluid text-center bg-sub">
<h2>토마토</h2>
<p>존내맛있다</p>
</div>
<div class="contaniner-fluid text-center bg-sub2">
<p class="h2">Infomation</p>
<div class="row">
<div class="col-sm-4">
<h4>"영양학적으로 매우 우수"</h4>
</div>
<div class="col-sm-4">
<h4>"포브스 선정 올해의 완전식품"</h4>
</div>
<div class="col-sm-4">
<h4>"11차원을 경험할 수 있음"</h4>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<img src="./img/img1.jfif">
</div>
<div class="col-sm-4">
<img src="./img/img2.png">
</div>
<div class="col-sm-4">
<img src="./img/img3.jfif">
</div>
</div>
<h1>이래도 안먹는다고?</h1>
</div>
<div class="container-fluid text-center footer">
<p>
Tomato is powered by HJPyo / Designed by HJPyo
</p>
</div>
</body>
</html>