Please enable JavaScript.
Coggle requires JavaScript to display documents.
HTML/CSS (Text (Quotations (<blockquote> used for longer quote. Can…
HTML/CSS
Text
-
-
-
-
-
-
-
-
-
Citation &
Definition
<cite> Use to reference a book,film, research page
HTML5 not really use it.
HTML4 continue use
-
-
-
Extra Markup
-
-
-
-
block element
always appear to start on a new line
<h1>,<p>,<ul><li>
inline element
always appear to continue on the same line
<a>, <b>, <em>, <img>
-
-
-
<meta>
-
description
contains a description of the page.
Search engines can understand
what the page is about and should be
a maximum of 155 characters
-
robots
indicates whether search engines should add this page to their search result or not.
noindex: not be added
nofollow be added but not any pages that it links to
-
-
-
Images
-
<img src="images/ahihi.png" alt="The content which is displayed when the image couldn't be loaded " title="The content which is displayed when hover the image" width="300" height="300"/>
-
align attribute
-
-
top: aligns the first line of text displayed in top of image. Subsequent line will be displayed under that image
-
-
-
Format
All of computer just display images at 72 pixels per inch (ppi). Using larger 72 ppi just make PC slowdown to load that image
bitmap: JPEG,GIF,PNG.
Made up of many
tiny squares 1x1 inch
-
GIF: used to display the picture which has an area that is filled with exactly color (flat color ): logo, illustration, diagrams
-
vector: logo,
illustration, diagram.
-
-
Figure :HTML5 tag. Used to image and caption association. <figure>
<img>
<figcation>Ahihihihihihih</figcation>
</figure>
-
-
-
-
Flash, Video, Audio
Video
Fornat: AVI, Flash Video, H264, MPEG,
Ogg Theora, Quicktime, WebM, and Windows Media
In order for users to view video online,
must to encoding video if browsers
don't support video formats
-
-
-
Forms
Form controls
-
Making choice
Radio Button
<form action="ahihi.html" method="post">
<p>Select your country</p>
<br>
<input type="radio" name="country" value="Viet Nam" checked>Viet Nam
<input type="radio" name="country" value="Lao">Lao
</form>
Checkbox
</form> <form action="ahihi.html" method="POST"> <p>Activities</p>
<br> <input type="checkbox" name="activities" value="Dota2" checked>Dota2 <input type="checkbox" name="activities" value="Football">Football
</form>
Dropdown Box
<form action="ahihi.html" method="POST">
<p>Select your job</p>
<br>
<select name="job">
<option value="BA" selected>BA</option>
<option value="DEV">DEV</option>
</select>
</form>
-
-
Button
allows more control how it appear and allow other elements can appear inside button <button><img src="image/add.png />Add</button>
input hidden
Always show hidden form control (Not shows in page). Used to allow web page author add values to form that user can't see.
-
-
-
<form action="URL" method="get",id="ahihi">
-
-
-