1
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?

HTML CSS 最初にやるべきこと

Posted at

目的

HTMLを書く際の手順や方法を一度しっかりまとめようと思いました。
自分なりの解釈ですので、ご了承ください。

最初にすべきこと

①htmlに以下を記述

<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="icon" href="">
    <title>タイトル名</title>
    <meta name="description" content="ディスクリプションです">
    <!--font-awesomeを使用する際に記述-->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
    <link rel="stylesheet" href="./css/reset.css">
    <link rel="stylesheet" href="./css/style.css">
</head>
<body>

</body>
</html>

②cssフォルダを作成、その中にreset.cssとsyle.cssを作成
③reset.cssに以下を記述

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
  }
  
  header, footer, nav, section, article, aside, figure, figcaption {
    display: block;
  }
  
  body {
    line-height: 1;
  }
  
  ol, ul {
    list-style: none;
    list-style-type: none;
  }

HTMLを記述していく

①セクションを作成していく

ここで大枠を決めていく。

<section class="top">

</section>
<section class="middle">

</section>

②記述していく。

記述していく際は、セクションごとに完成を目指そう!

CSSの設定

大枠の大きさを決める。

大枠の大きさを決めることで、画面全体に表示させなくて済む

大枠の名前 {
    width: 80%;
    max-width: 1200px; /*この大きさはいくつでも良い*/
    margin: 0 auto; /*両側を空ける事ができる*/

最後に

これで、HTMLを書き始めることができるはず。

1
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
1
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?