-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Practice 1</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.1/semantic.min.css" />
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<div class="ui segment">
<div class="ui centered huge header">練習一</div>
</div>
<div class="ui segment">
<div class="ui styled accordion">
<template id="articleTemplate">
<div class="title"><i class="dropdown icon"></i><span>title1</span></div>
<div class="content">
<p class="transition hidden">
<div>
<div class="imgBox">
<img class="myImage" src="https://i.imgur.com/sVkLdNZ.jpg">
</div>
</div>
</p>
</div>
</template>
</div>
</div>
<!-- (.title>i.dropdown.icon^.content>p.transition.hidden)*3 -->
<!-- 遠端套件 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.1/semantic.min.js"></script>
<!-- 自己寫 -->
<script src="./scripts/main.js"></script>
</body>
</html>