-
Notifications
You must be signed in to change notification settings - Fork 0
/
self-introduction-css.html
50 lines (44 loc) · 1.37 KB
/
self-introduction-css.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>${あなたのハンドルネーム}の自己紹介</title>
<link rel="stylesheet" href="self-introduction.css">
</head>
<body>
<img src="ny-logo-128.png" alt="アイコン">
<h1>${あなたのハンドルネーム}</h1>
<h3>わたしの情報</h3>
<table>
<tr>
<th>年齢</th>
<td>${あなたの年齢}</td>
</tr>
<tr>
<th>性別</th>
<td>${あなたの性別}</td>
</tr>
<tr>
<th>都道府県</th>
<td>${お住まいの都道府県}</td>
</tr>
</table>
<h3>趣味</h3>
<ul>
<li>${あなたの趣味1}</li>
<li>${あなたの趣味2}</li>
<li>${あなたの趣味3}</li>
</ul>
<h3>SNS へのリンク集</h3>
<ul>
<li><a href="https://twitter.com/nico_nico_news">Twitter</a></li>
</ul>
<h3>好きな動画</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/VkTA7uWN8S4" frameborder="0"
allowfullscreen></iframe>
<h3>卒業した中学校の場所</h3>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d13191.268258591406!2d132.5870936!3d34.2532113!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xe0a0a7ed7d3a0744!2z5p2x55WR5Lit5a2m5qCh!5e0!3m2!1sja!2sjp!4v1441872211027"
width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</body>
</html>