Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
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
4 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
2
frameborder
frameborder="0"
gives zero width border to
<iframe>
by Valeri Tandilashvili
4 years ago
0
HTML
attributes
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
4 years ago
0
HTML
input types
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
4 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
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
4 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
2
dl
<dl> <!-- description list tag-->
  <dt>description term 1</dt>
  <dd>describe description 1</dd>
  <dt>description term 2</dt>
  <dd>describe description 2</dd>
</dl>
by Valeri Tandilashvili
4 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
1
ol attribute "type"
Default type value is
1
Possible values for the attribute are:
1
,
A
,
a
,
I
,
i
by Valeri Tandilashvili
4 years ago
0
HTML
attributes
HTML - Build a Website | Tutorial
2
tag "iframe"
<iframe src="https://amazon.com">sorry</iframe>
<iframe>
is used to display another web site inside our web page. Also youtube videos can be embedded into iframes
by Valeri Tandilashvili
4 years ago
0
HTML
tags
HTML - Build a Website | Tutorial
1
video attribute "loop"
Using
loop
attribute, the video will start playing again, after finishing it
by Valeri Tandilashvili
4 years ago
0
HTML
attributes
HTML - Build a Website | Tutorial
1
video attribute "poster"
poster="thumb.jpg"
attribute is used to specify some other thumbnail
by Valeri Tandilashvili
4 years ago
0
HTML
attributes
HTML - Build a Website | Tutorial
1
Results: 1578