-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.46 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hi, I'm [Name] - Personal Game</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="game-screen">
<header>
<div id="typing-text"></div>
</header>
<main>
<section class="about">
<h2>About Me</h2>
<p>Lv.21 Web App Developer</p>
<p>here is nything you want to write.</p>
<p>here is nything you want to write.</p>
</section>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>PHP: 90%</li>
<li>Python: 80%</li>
<li>Go: 70%</li>
<li>Japanese: 3%</li>
</ul>
</section>
<section class="links">
<h2>Connect</h2>
<a href="#" class="btn">Portfolio</a>
<a href="#" class="btn">GitHub</a>
<a href="#" class="btn">LinkedIn</a>
<a href="#" class="btn">Twitter</a>
</section>
</main>
<footer>
<p>Press Start to explore more!</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>