forked from Sookmyung-Software-Hackathon/team15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bread.html
74 lines (72 loc) · 1.79 KB
/
bread.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
<!doctype html>
<html>
<head>
<title>제빵 배우기 강의계획서</title>
<meta charset="utf-8">
</head>
<body style="text-align:center;">
<style>
h1{
font-size: 30px;
color: black;
text-transform: uppercase;
font-weight: 300;
text-align: center;
margin-bottom: 30px;
}
h2{
font-size: 23px;
color: black;
text-transform: uppercase;
font-weight: 700;
text-align: center;
margin-bottom: 30px;
}
body {
padding:1.5em;
background: black;
}
body{
font-family: 'Roboto', sans-serif;
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}
section{
margin: 80px;
}
</style>
<h2 style="font-size:30px;">제빵 배우기</h2>
<img src="br1.png" width="300" height="300">
<img src="br2.jpeg" width="300" height="300">
<h2>
<ol>강사 : 백종원<br></ol>
<ol>주차 : 12<br></ol>
<ol>교육일시 : 화,목 (14:00 ~ 17:00)<br></ol>
<ol>장소 : 경기도 용인시 문화회관 203호<br></ol>
<ol>정원 : 30<br></ol>
<ol>수강료 : 월 140,000원<br></ol>
<ol>유의사항 : 용인시민의 경우 10% 할인<br></ol>
</h2>
<style>
button{
width:120px;
height:40px;
color:#fff;
background:#004fff;
font-size:16px;
border:none;
border-radius:20px;
box-shadow: 0 4px 16px rgba(0,79,255,0.3);
transition:0.3s;
}
button:focus{
outline:0;
}
button:hover{
background:rgba(0,79,255,0.9);
cursor:pointer;
box-shadow: 0.2px 4px rgba(0,79,255,0.6);
}
</style>
<button type="button" onclick="location.href='register.html'">이전</button>
</body>
</html>