-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (127 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>소프트웨어융합기초1(2024여름계절)</title>
<link rel="stylesheet" type="text/css" href="./index.css" />
<style>
#divTitle,
#divContent {
height: auto;
justify-content: left;
display: block;
}
ul {
font-weight: lighter;
font-size: smaller;
}
ul > li {
margin-left: 30px;
}
#content > li {
margin: 15px;
}
a {
color: black;
padding: 5px;
border-radius: 10px;
}
a:hover {
color: black;
background-color: white;
}
footer {
width: 60%;
background-color: #343a40;
color: white;
text-align: center;
padding: 20px 0;
position: fixed;
bottom: 0;
}
footer {
color: white;
}
</style>
</head>
<body>
<main>
<header>
<h1>소프트웨어융합기초1</h1>
<div><a href="./index.html">홈</a></div>
</header>
<section>
<div id="divTitle">
<h3>목차</h3>
<ul id="content">
<li>
2. HTML
<ul>
<li><a href="./02_html/02.html">2.1 기초</a></li>
</ul>
</li>
<li>
3. CSS
<ul>
<li><a href="./03_css/03-1/03-1.html">3.1 기초</a></li>
<li><a href="./03_css/03-2/03-2.html">3.1 활용</a></li>
</ul>
</li>
<li>
4. JS
<ul>
<li><a href="./04_js/04/04.html">4.1 기초</a></li>
<li>
<a href="./04_js/randomDice/randomDice.html"
>4.2 주사위 게임</a
>
</li>
<li>
<a href="./04_js/randomDiceMatch/randomDiceMatch.html"
>4.3 주사위 게임 (💻 vs 👩)</a
>
</li>
<li>
<a href="./04_js/unitConverter/unitConverter.html"
>4.4 단위 환산</a
>
</li>
<li>
<a href="./04_js/updownGame/updownGame.html"
>4.5 업다운 게임</a
>
</li>
</ul>
</li>
<li>
5. JS 배열 객체
<ul>
<li>
<a href="./05_js_array_object/05/prac.html">5.1 기초</a>
</li>
<li>
<a href="./05_js_array_object/string/string.html"
>5.2 문자열 다루기</a
>
</li>
<li>
<a href="./05_js_array_object/lotto/lotto.html"
>5.3 로또번호 생성기</a
>
</li>
</ul>
</li>
</ul>
</div>
<div id="divContent">
<h2>참고사이트</h2>
<ul>
<!-- a 태그는 앵커 태크(하이퍼링크와 속성 기능) -->
<li><a href="https://www.w3schools.com/">w3School</a></li>
</ul>
</div>
</section>
</main>
</body>
</html>