-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (97 loc) · 3.56 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<header>
<link rel="stylesheet" href="./styles.css">
</header>
<body>
<header>
<h1><a href="#">My blog</a></h1>
<nav>
<ul>
<li>
<a href="#">Top</a>
</li>
<li>
<a href="About/index.html">About</a>
</li>
<li>
<a href="Blog/index.html">Blog</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="topimage">
<div class="toptext">
<h1 id=title>Top</h1>
</div>
</div>
<section class="contents">
<div class="contents-container">
<h1>最近の出来事</h1>
<div id="latest">
<ul>
<li>
2021/12/14 ホームページ仮公開
</li>
<li>
2021/12/13 ホームページ仮完成
</li>
<li>
2021/10/10 ホームページ製作開始
</li>
</ul>
</div>
</div>
</section>
<div class="flex-box">
<section class="contents" id="left-contents">
<div class="contents-container">
<h1>プロフィール</h1>
<img src="https://pbs.twimg.com/profile_images/1257187454391480320/VvBlpKji_400x400.jpg" alt="dummy
image">
<div id="profile-right">
<h2>名前</h2>
<p>tamakiです。twitterはTHです</p>
<h2>所属</h2>
<ul>
<li>
名工大情報工学部
</li>
<li>
NITMic
</li>
</ul>
<h2>趣味</h2>
<p>ゲームやります。</p>
<div id="linktoabout"><a href="About/index.html">→ About</a></div>
</div>
</div>
</section>
<section class="contents" id="right-contents">
<div class="contents-container">
<div class="twitter-timeline-parent">
<a class="twitter-timeline" data-width="90%" data-height="100%"
href="https://twitter.com/TmgHiro?ref_src=twsrc%5Etfw">Tweets by TmgHiro</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<nav class="social-link">
<a href="https://twitter.com/TmgHiro">
<img class="profile-photo"
src="https://pbs.twimg.com/profile_images/1257187454391480320/VvBlpKji_400x400.jpg"
alt="プロフィール画像">
<div class="name">
Twitter
</div>
</a>
</nav>
</div class="contents-container">
</section>
</div>
</main>
<footer>
<p>© 2021 tamaki</p>
</footer>
</body>
</html>
<!-- 最初のpull 2021/10/14-->