1
1

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.

Progate 初級編 2

Posted at

未来電子テクノロジー(https://www.miraidenshi-tech.jp/intern-content/program/)
で、インターンをしているたくみです。
今回は前回に引き続き、取り組んできたProgate HTML/CSSの初級編の一部をまとめてみました。
###HTMLの全体構造

<html>
 <head>
 </head>
 <body>
   <h1>~~</h1>
   <p>~~</p>
 </body>
<html>

###<head>要素の中身

<head>
   <meta charset="###">・・・文字コード
  <title>~~</title>・・・タイトル
   <link rel="stylesheet" href="stylesheet.CSS">・・・CSSの読みこみ
</head>

###ヘッダーの枠組み

<div class="header">
  <div class="header-logo"> ○○○○ </div>
  <div class="header-list">
    <ul>
     :
     :
    </ul>
  </div>
</div>

###最後に
プログラミング初心者であるため、内容に誤りがあるかもしれません。
もし誤りがあれば、修正するので、どんどん指摘してください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?