-会員ページFree-CSS基礎構文-第1章-


View Modeで閲覧

■CSS基礎構文-第1章-ビデオ1
CSSとは?

■CSS基礎構文-第1章-ビデオ2
CSSの書き方

■CSS基礎構文-第1章-ビデオ3
CSSの読み込み方

■CSS基礎構文-第1章-ビデオ4
CSSを記述してみましょう!

■CSS基礎構文-第1章-ビデオ5
スタイルの継承を理解しましょう!

■CSS基礎構文-第1章-ビデオ6
フォントを操作するプロパティ

■CSS基礎構文-第1章-ビデオ7
文字を中央に配置しましょう!

■CSS基礎構文-第1章-ビデオ8
MDNのサイトを活用しましょう!

■MDN CSSリファレンス
https://developer.mozilla.org/ja/docs/Web/CSS

「ブラウザ」と「エディタ」は下記のWebページからダウンロードできます。

■Google Chrome (ウェブブラウザ)
https://www.google.com/intl/ja_ALL/chrome/

■Atom (テキストエディタ)
https://atom.io/

index.html

<!DOCTYPE html>
<html lang=”ja”>
<head>
<meta charset=”utf-8″>
<title></title>
<style>

/* body {
color: red;
} */

p {
font-size: 24px;
font-weight: bold;
color: red;
text-decoration: underline;
/* text-align: left; */
}

</style>
</head>
<body>
<h1>サタデーズ</h1>
<p>学習塾のオンサタデーズ</p>
</body>
</html>