forked from su-its/BookManagement4Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn-html.html
More file actions
56 lines (47 loc) · 1.55 KB
/
Copy pathlearn-html.html
File metadata and controls
56 lines (47 loc) · 1.55 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTMLを学ぼう</title>
<link rel="stylesheet" href="learn-html.css">
</head>
<body class="page-body">
<h1 class="heading-1">こんにちは</h1>
<p>こんにちは</p>
<hr class="hr-line">
<a class="link" href="https://www.google.com">Google</a>
<img class="image" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Googleのロゴ">
<hr class="hr-line">
<ul class="unordered-list">
<li class="list-item">リンゴ</li>
<li class="list-item">バナナ</li>
<li class="list-item">みかん</li>
</ul>
<ol class="ordered-list">
<li class="list-item">リンゴ</li>
<li class="list-item">バナナ</li>
<li class="list-item">みかん</li>
</ol>
<hr class="hr-line">
<table class="table">
<tr class="table-row">
<th class="table-header">名前</th>
<th class="table-header">年齢</th>
</tr>
<tr class="table-row">
<td class="table-data">山田太郎</td>
<td class="table-data">20</td>
</tr>
<tr class="table-row">
<td class="table-data">田中次郎</td>
<td class="table-data">25</td>
</tr>
</table>
<hr class="hr-line">
<div class="box">
<h2 class="heading-2">こんにちは</h2>
<p>こんにちは</p>
</div>
</body>
</html>