-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.55 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="page.css">
<script src="https://kit.fontawesome.com/4f33c442a6.js" crossorigin="anonymous"></script>
<title>SHINN's home -top-</title>
</head>
<body>
<header>
<h1 class="headline">SHINN's home</h1>
<ul class="nav-list">
<li class="nav-list-item">Top</li>
<li class="nav-list-item">Blog</li>
<li class="nav-list-item">Books</li>
</ul>
</header>
<main>
<div class="profile">
<img src="pictures/icon.jpg" alt="アイコン画像" class="icon">
<div class="profile-detail">
<ul class="profile-align">
<li class="profile-items">name : SHINN</li>
<li class="profile-items">age : 19</li>
<li class="profile-items">univ : 電気通信大学 情報理工学域 Ⅰ類</li>
<li class="profile-items">Link :
<a href="https://twitter.com/home" target="_blank" class="img-style">
<i class="fa-brands fa-square-twitter fa-xl"></i>
</a>
<a href="https://github.com/SHINN314" target="_blank" class="img-style">
<i class="fa-brands fa-github fa-xl"></i>
</a>
</li>
</ul>
</div>
</div>
</main>
</body>
</html>