質問編集履歴

1

HTMLのコードを追加

2022/11/26 23:48

投稿

wkou4627
wkou4627

スコア12

test CHANGED
File without changes
test CHANGED
@@ -27,7 +27,116 @@
27
27
  ```
28
28
 
29
29
  ### 該当のソースコード
30
-
30
+ ```HTML
31
+
32
+ <!DOCTYPE html>
33
+ <html lang="ja">
34
+ <head>
35
+ <meta charset="UTF-8">
36
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
37
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
38
+ <title>My Work</title>
39
+ <meta name="description" content="text text texte">
40
+ <link rel="stylesheet" href="./assets/css/sanitize.css">
41
+ <link rel="stylesheet" href="./assets/css/style.css">
42
+ </head>
43
+
44
+ <body>
45
+
46
+ /* <header></header>/*
47
+
48
+
49
+ <section>
50
+ <div class="section">
51
+ <h1 class="section-about">
52
+ <a id="about">About</a>
53
+ </h1>
54
+ <p class="foo">Xxxx Ashley</p>
55
+ <address class="about-address">2th Floor Building x-x-x Nishiazabu, Minato-ku, Tokyo 106-0031 Japan</address>
56
+ <ul class="about-description">
57
+ <li>tel:000-0000-0000</li>
58
+ <li>www.xxxxxxx.jp</li>
59
+ <li>mail:xxx@xxxxx.jp</li>
60
+ </ul>
61
+
62
+ <p class="profile-description">プロフィールtext text text text text text text text text <br/>
63
+ text text text text text text text texttext text text text text text text text <br/>
64
+ text text text text text text text texttext text text text text text text text <br/>
65
+ </p>
66
+ </div>
67
+ </section>
68
+
69
+ <section>
70
+ <div class="news">
71
+ <h1 class="news-title">
72
+ <a id="news">News</a>
73
+ </h1>
74
+ <dl>
75
+ <dt>2020.XX.XX</dt>
76
+ <dd>デザイン雑誌「XXXXXX Vol.11」に掲載していただきました。</dd>
77
+
78
+ <dt>2020.XX.XX</dt>
79
+ <dd>デザイン雑誌「XXXXXX Vol.11」に掲載していただきました。</dd>
80
+
81
+ <dt>2019.XX.XX</dt>
82
+ <dd>デザイン雑誌「XXXXXX Vol.11」に掲載していただきました。</dd>
83
+
84
+ <dt>2019.XX.XX</dt>
85
+ <dd>デザイン雑誌「XXXXXX Vol.11」に掲載していただきました。</dd>
86
+
87
+ <dt>2019.XX.XX</dt>
88
+ <dd>デザイン雑誌「XXXXXX Vol.11」に掲載していただきました。</dd>
89
+ </dl>
90
+
91
+ </div>
92
+ </section>
93
+
94
+ <section class="contact">
95
+ <h1 class="contact-title">
96
+ <a id="contact">Contact</a>
97
+ </h1>
98
+ <form classs="form" action="">
99
+
100
+ <table class="form-table">
101
+
102
+ <tr>
103
+ <td>
104
+ <label for="name">NAME</label>
105
+ </td>
106
+ <td>
107
+ <input class="input" type="text" id="name">
108
+ </td>
109
+ </tr>
110
+
111
+ <tr>
112
+ <td>
113
+ <label for="email">E-mail</label>
114
+ </td>
115
+ <td>
116
+ <input class="input" type="email" id="email">
117
+ </td>
118
+ </tr>
119
+
120
+ <tr>
121
+ <td>
122
+ <label for="message">MESSAGE</label>
123
+ </td>
124
+ <td>
125
+ <textarea class="textarea" id="message" cols="30" rows="10"></textarea>
126
+ </td>
127
+ </tr>
128
+ </table>
129
+
130
+ <div class="form-button">
131
+ <button class="button.button-submission" type="submit">送信</button>
132
+ </div>
133
+ </form>
134
+ </section>
135
+
136
+ /*<footer></footer>*/
137
+ </body>
138
+ </html>
139
+ ```
31
140
 
32
141
 
33
142
  ```CSS