-
Notifications
You must be signed in to change notification settings - Fork 0
/
liberal_list.html
41 lines (41 loc) · 1.22 KB
/
liberal_list.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
<!DOCTYPE html>
<html>
<head>
<style>
.graph {
position: relative;
width: 60%;
border: 1px solid #B1D632;
padding: 2px;
font-size:11px;
font-family:tahoma;
margin-bottom:3px;
}
.graph .bar {
display: block;
position: relative;
background: #B1D632;
text-align: center;
color: #333;
height: 2em;
line-height: 2em;
}
</style>
</head>
<body>
<ul>
<li><h4>기초교양 7/7</h4>
<div class="graph"><strong class="bar" style="width: 100%;">100%</strong></div></li>
<li><h4>균형교양 12/12</h4>
<div class="graph"><strong class="bar" style="width: 100%;">100%</strong></div></li>
<li><h4>특화교양 1/1</h4>
<div class="graph"><strong class="bar" style="width: 100%;">100%</strong></div></li>
<li><h4>대학별교양 9/9</h4>
<div class="graph"><strong class="bar" style="width: 100%;">100%</strong></div></li>
<li><h4>그외 0/10</h4>
<div class="graph"><strong class="bar" style="width: 0%;">0%</strong></div></li>
<li><h4>합계 60/65</h4>
<div class="graph"><strong class="bar" style="width: 85%;">85%</strong></div></li>
</ul>
</body>
</html>