-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (72 loc) · 2.28 KB
/
index.html
File metadata and controls
88 lines (72 loc) · 2.28 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>xの自己紹介</title>
</head>
<body>
<h1 id="display-area"></h1>
<script src="myFirst.js"></script>
<h1>1 番目に大きい見出し</h1>
<h2>2 番目に大きい見出し</h2>
<h3>3 番目に大きい見出し</h3>
<h4>4 番目に大きい見出し</h4>
<h5>5 番目に大きい見出し</h5>
<h6>6 番目に大きい見出し</h6>
<p>
HTML タグは、文章をマークアップすることで、
<br>文章に意味を与えることができます
</p>
<img src="https://progedu.github.io/forum-ranking/assets/images/logo-n.svg" alt="N予備校のロゴ" />
<p>
<a href="https://kenkoooo.com/atcoder/#/table/yotsutose">atcoder problems</a>
</p>
<p>
<a href="https://www.nnn.ed.nico/">N予備校のホームページ</a>
</p>
<p>
p タグは、段落を表すので、p タグごとに隙間が空いた改行になります
</p>
<ul>
<li>
PC
<ul>
<li>Windows</li>
<li>Mac</li>
<li>Linux</li>
</ul>
</li>
<li>
スマホ
<ul>
<li>iOS</li>
<li>Android</li>
<li>Windows Phone</li>
</ul>
</li>
</ul>
#ここから自己紹介
<img src="https://progedu.github.io/forum-ranking/assets/images/logo-n.svg" alt="アイコン" />
<h1>○○(あなたのハンドルネーム)</h1>
<h3>わたしの情報</h3>
<ul>
<li>年齢: ×× 歳</li>
<li>都道府県:△△県</li>
</ul>
<h3>趣味</h3>
<ul>
<li>○○○○○</li>
<li>*****</li>
<li>~~~~~</li>
</ul>
<h3>SNS へのリンク集</h3>
<ul>
<li><a href="https://twitter.com/n_yobikou">Twitter</a></li>
</ul>
<h3>好きな動画</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/QIurNEMqi6o" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</body>
</html>