質問編集履歴
3
プロジェクトの位置関係追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -96,7 +96,7 @@
|
|
96
96
|
|
97
97
|
```![イメージ説明](072b8f123232f2bfb889049dc2440437.png)
|
98
98
|
|
99
|
-
|
99
|
+
![イメージ説明](708a345d05b4b50f601dd4440c937dab.png)
|
100
100
|
|
101
101
|
|
102
102
|
|
2
コードの記入、元サイトの表示
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,108 @@
|
|
1
|
+
```ここに言語を入力
|
2
|
+
|
3
|
+
HTML
|
4
|
+
|
5
|
+
<html lang="ja" dir="ltr">
|
6
|
+
|
7
|
+
<head>
|
8
|
+
|
9
|
+
<meta charset="utf-8">
|
10
|
+
|
11
|
+
<title>Profile</title>
|
12
|
+
|
13
|
+
<meta name="discription" content="写経">
|
14
|
+
|
15
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
16
|
+
|
17
|
+
<link rel="shortcut icon" href="img/favicon.ico">
|
18
|
+
|
19
|
+
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css">
|
20
|
+
|
21
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
22
|
+
|
23
|
+
</head>
|
24
|
+
|
25
|
+
<body>
|
26
|
+
|
27
|
+
<!--header-->
|
28
|
+
|
29
|
+
<header id="header" class="wrapper">
|
30
|
+
|
31
|
+
<h1 class="site-title">
|
32
|
+
|
33
|
+
<a href="./pas-pol.html">
|
34
|
+
|
35
|
+
<img src="./logo.png" alt="ロゴ画像"></a>
|
36
|
+
|
37
|
+
</h1>
|
38
|
+
|
39
|
+
<nav>
|
40
|
+
|
41
|
+
<ul>
|
42
|
+
|
43
|
+
<li><a href="#about">About</a></li>
|
44
|
+
|
45
|
+
<li><a href="#bicycle">Bicycle</a></li>
|
46
|
+
|
47
|
+
</ul>
|
48
|
+
|
49
|
+
</nav>
|
50
|
+
|
51
|
+
</header>
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
CSS
|
56
|
+
|
57
|
+
@charset "UTF-8";
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
html {
|
62
|
+
|
63
|
+
font-size: 100%;
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
body {
|
68
|
+
|
69
|
+
color: #383e45;
|
70
|
+
|
71
|
+
font-size: 0.9rem;
|
72
|
+
|
73
|
+
}
|
74
|
+
|
75
|
+
a{
|
76
|
+
|
77
|
+
text-decoration:none;
|
78
|
+
|
79
|
+
}
|
80
|
+
|
81
|
+
img{
|
82
|
+
|
83
|
+
max-width: 100%;
|
84
|
+
|
85
|
+
}```ここに言語を入力
|
86
|
+
|
87
|
+
コード
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
[写経元サイト](https://code-step.com/profile-menu/)
|
94
|
+
|
95
|
+
|
96
|
+
|
1
|
-
![イメージ説明](072b8f123232f2bfb889049dc2440437.png)
|
97
|
+
```![イメージ説明](072b8f123232f2bfb889049dc2440437.png)
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
2
106
|
|
3
107
|
|
4
108
|
|
1
タグの訂正
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|