Coffee project Flashcards
Syntax for inline style
<p>
</p>
what is <textarea> element in HTML form?</textarea>
It is text box where user can send question
how is <label> and <input></input> element connected?</label>
<label> Label </label>
<input></input>
input has id, label has for
<input></input>’s attribute include
<input></input>
type, id, name, value
name 4 “type” attribute in input element
input type=”text/checkbox/radio/submit”
How to add placeholder text in your HTML form
add placeholder = “…” attribute to <input></input> or <textarea> tag</textarea>
Instead of placeholder text, you want example value. How to do it?
replace “placeholder” attribute with “value” (Text color is black instead of grey)
How to insert video in your website
<video>
<source></source>
Text if video can't run
</video>