-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (70 loc) · 2.8 KB
/
index.html
File metadata and controls
76 lines (70 loc) · 2.8 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
<!-- コメントアウト : command + / -->
<!-- 移動 : option + ↑/↓ -->
<!-- サジェスト選択 : tabキー -->
<!-- 段落下げ : 選択 + tab -->
<!-- meta : Webページのメタデータを検索エンジンやブラウザに認識させるためのHTMLタグ -->
<!-- shift option 矢印 : 行の複製 -->
<!-- mdn -->
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>太郎のポートフォリオサイト</title>
<link rel="icon" href="favicon.ico">
<meta name="description" content="太郎のポートフォリオサイトです">
<link rel="stylesheet" href="css/styles.css">
<!-- <style>
h1{
color:red;
}
</style> -->
</head>
<body>
<header>
<div class="container">
<div class="icon">
<img src="img/taro.png" width="120" height="120" alt="太郎の画像です">
</div>
<div class="info">
<!-- src以降はタグの属性である -->
<h1>山田太郎です</h1>
<p>UI/UXデザイナーです</p>
<ul>
<li>
<a href="http://abehiroshi.la.coocan.jp/" target="_blank">
<img src="img/blog.png" width="20" height="20" alt="ブログサイトへのリンク画像です">
</a>
</li>
<li>
<a href="https://ja.wikipedia.org/wiki/%E9%98%BF%E9%83%A8%E5%AF%9B" target="_blank">
<img src="img/photos.png" width="20" height="20" alt="写真サイトへのリンク画像です">
</a>
</li>
</ul>
</div>
</div>
</header>
<!-- 作品紹介 -->
<section class = "works">
<h1>WORKS</h1>
<section>
<img src="img/work1.png" width="400" height="260" alt="勇者ゲームの紹介画像">
<h1>勇者ゲーム</h1>
<p>楽しい</p>
</section>
<section>
<img src="img/work2.png" width="400" height="260" alt="宝探しゲームの紹介画像">
<h1>宝探しゲーム</h1>
<p>楽しい</p>
</section>
<section>
<img src="img/work3.png" width="400" height="260" alt="神経衰弱ゲームの紹介画像">
<h1>神経衰弱ゲーム</h1>
<p>楽しい</p>
</section>
</section>
<footer>
<p>(c) dotinstall.com</p>
</footer>
</body>
</html>