#programming学習
#4-5表とフォームの作成(HTML Tables and Forms)
What I learned today ー今日の学びの復習(目標執筆時間:15min/lesson) #4 How to insert table
・表を作るのに使うのは<table></table>
セルの幅はwidth で調整
表に格子を付ける場合はborder ="1"(ただしCSSで書いた方が見やすいのでこの書き方はおすすめではないとのこと。CSS学習がまだの人向け。)
ex)
<tab
#6,7,8 How to make HTML Forms & Introduction to CSS
#6 -7 Kinds of Form Controls続き (learned on June 25, 2024)
・Checkbox
input: checkboxと入力するとsuggestionが出てくるのでEnter。
syntaxは例えば次の通り。これを必要な選択肢分作る。
<input type="checkbox" name="dissert" id="icecream">
<label
#9-10 CSS Typography
What I learned today (今日の学びと復習)
CSSでスタイルを作る前に……
htmlファイルの<head></head>に<link>を作っていることを確認!
うっかり忘れていると、スタイルが反映されない!
・CSS Color
CSSでの色の作り方は以下の5種類
1. color name
2. rgb= red green blue = (3 values) = 0