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

ホームページ作成をしよう!(HTML、CSS編part1)

Posted at

概要

一からコーディングしてホームページのデザインをしたい人向けに書いていきます。

目次

  1. HTMLとCSSについて
  2. WEB作成の準備
  3. HTMLの基本構造
  4. HTMLとCSSについて

    HTMLとは、HyperTextMarkupLanguageの略です。 つまりは、ハイパーテキストのための、文章に目印をつける方法を定めた文法上の約束だよ。

    CSSとは、Cascading Style Sheetsの略です。
    HTMLで作られたページをスタイルして(服を着せて)あげるための言語。

    WEB作成の準備

    初めにサイトを作るために専用のフォルダーを作ってあげよう。 作成ができたら、専用のツールかメモ帳で〇〇〇.htmlのファイルを作成しよう。 メモで作る場合は新規作成から保存時に文字コードはUTF-8に設定して、フィル名.htmlにし保存してみよう。

    HTMLの基本構造

    
    <!DOCTYPE html>
    <html lang="ja">
    <head>
        <meta charset="UTF-8">
        <title>ようこそ</title>
        <meta name="description" content="">
        <meta name="keywords" content="">
    </head>
    <body>
       <h2>はじめまして</h2>
       <p>今日から始めるHTML</p>
    </body>
    </html>
    

    次回はタグについて詳しく書いていきます

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?