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 5 years have passed since last update.

HTMLの基本~コメントアウト、リンクなど

Last updated at Posted at 2019-07-09

HTMLの基本

コピペして使ってください。
HTMLの基本構造、コメント、リンク、画像、リストを記載。

基本構造

sample.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Title</title>
    <link rel="stylesheet" href="stylesheet.css">
  </head>
  <body>
    <header></header>
      <div class="top-wrapper"></div>
      <div class="middle-wrapper"></div>
      <div class="bottom-wrapper"></div>
    <footer></footer>
  </body>
  </body>
</html>

コメント、リンク、画像、リスト

sample.html

<!--コメント-->

<!--リンク-->
<a href="URL"></a>

<!--画像-->
<img src="URL">

<!--リスト-->
<ul>
  <li></li>
  <li></li>
  <li></li>
</ul>

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?