-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 1.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kai</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<ul>
<li><a id="now" href="index.html">HOME</a></li>
<li><a href="profile.html">PROFILE</a></li>
<li><a href="works.html">WORKS</a></li>
<li><a href="blog.html">BLOG</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</header>
<section class="home">
<img id="img" src="/img/tate_short.png" />
<h2 id="name">KAI NAGAHARI</h2>
</section>
<div class="imgWrapper">
<img id="yokoimg" src="/img/yoko.png" />
</div>
<section class="news">
<h2 class="subtitle">POSTS</h2>
<div id="twitter-posts">
<a
class="twitter-timeline"
href="https://twitter.com/bearl_develop?ref_src=twsrc%5Etfw"
>Tweets by bearl_develop</a
>
<script
async
src="https://platform.twitter.com/widgets.js"
charset="utf-8"
></script>
</div>
</section>
<section class="contact">
<p>
X ▶︎
<a href="https://x.com/breal_develop">https://x.com/bearl_develop</a>
</p>
<p></p>
<p></p>
</section>
<footer>
<p>© Kai</p>
</footer>
</body>
</html>