Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
ol attribute "type"
Default type value is
1
Possible values for the attribute are:
1
,
A
,
a
,
I
,
i
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML - Build a Website | Tutorial
2
call JavaScript function using href attribute of <a>
<a href="javascript:get_next_10();">some link</a>
by Valeri Tandilashvili
4 years ago
0
JavaScript
2
caption
<caption>
goes inside
<thead>
and is title of the table. The title is centered horizontally.
caption
is above the first
tr
<table>
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
</table>
by Valeri Tandilashvili
5 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
2
block and inline containers
<a>
and
<span>
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
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML Tutorial for Beginners
2
attribute "for"
<label for="inputID">some title</label><input type="text" id="inputID" size="50">
label
attribute
for
and
input
attribute
id
should be the same to tie these two elements together
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML Tutorial for Beginners
2
Results: 1580