-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<script type="module">
import { addSiteTitle } from "./src/head.ts"
import { addIntro, addExperience, addArticles, addCertificates } from "./src/main.ts"
import { addCopyrights, addSns } from "./src/footer.ts"
const myname = "Daisuke Yamamoto"
addIntro(myname)
addSiteTitle(myname)
addExperience()
addArticles(20)
addCertificates()
addCopyrights(myname)
addSns()
</script>
</head>
<body>
<!-- Introduction Section -->
<section id="intro">
</section>
<!-- Experience Section -->
<section id="experience">
</section>
<!-- Articles Section -->
<section id="articles">
</section>
<!-- Certificates Section -->
<section id="certificates">
</section>
<footer id="sns">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"></link>
</footer>
</body>
</html>