-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css">
<title>Personal Site</title>
</head>
<body>
<!-- 導覽列 -->
<nav>
<ul>
<li><a href="#" class="active"> 簡介</a></li>
<li><a href="artwork.html"> 作品</a></li>
<li><a href="try.html"> Bootcamp問題</a></li>
</ul>
</nav>
<!-- 內容 -->
<section class="container">
<section class="left">
<img src="images/YFCheng.png" alt="" class="myPicture" />
</section>
<section class="right">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste quia exercitationem quidem dolor aspernatur incidunt architecto similique. Quo eveniet ut sint eaque asperiores fuga deleniti qui doloribus, reprehenderit, cum sapiente!</p>
</section>
</section>
</body>
</html>