are inline containers that are going to take as much space as they need.
Whereas
<p>
and
<div>
are block containers that take the entire width of the screen.
by Valeri Tandilashvili
5 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
2
checkbox & radio differences
We can check as many checkboxes as we want, but we can only check one radio as long as they have the same name.
by Valeri Tandilashvili
5 years ago
0
HTML
input types
HTML - Build a Website | Tutorial
2
frameborder
frameborder="0"
gives zero width border to
<iframe>
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML - Build a Website | Tutorial
2
tag "meta"
<meta>
with
name
and
content
attributes contains meta information of the web page.
These are commonly used meta names:
description
,
author
,
keywords
,
viewport
,..
Example of
author
meta tag
<meta name="author" content="Mike">
by Valeri Tandilashvili
5 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
2
bookmark
To create a bookmark we can use any block or inline containers (a, span, p, h1, div) with appropriate id value:
<h2 id="C4">Chapter 4</h2> and then there are two ways to create a link to the bookmark:
1. <h1 href="#C4">Jump to Chapter 4</h1>
2. <a name="#C4">Jump to Chapter 4</a>
by Valeri Tandilashvili
5 years ago
0
HTML
links
HTML Tutorial for Beginners
2
attribute "size"
<input type="text" size="50">
this means the input will have enough width for 50 characters