0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

3-3.1 HTML演習

Last updated at Posted at 2022-09-14

1. HTMLの基本形

  1. 下記のHTMLの基本形をコピペせず、打ち込んでみてください。
  2. 1.同様に打ち込みますが、1行1行どういうタグなのか考えながら打ち込んでみてください。(分からない箇所は調べてみてください。)
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>タイトル</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div>ボディー部です。</div>
  </body>
</html>

2. radio

以下をHTMLで表現してみてください。

image.png

3.table

以下をHTMLで表現してみてください。

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?