To add a video to your page you can use the tag.
You can insert a copyright symbol by using the & copy to any HTML document.
HTML supports various media types and formats such as,
Audio: WMA, MIDI, AAC, WAV, MP3, MP4
Video: MPEG, AVI, WMV, WebM, QuickTime, MP4, etc. Image: jpg, jpeg, png, gif, SVG
It is used to forward header information to the server so as to display text not HTML code. This encoding parses non-ASCII special characters and replace them with the standard form.
Cell spacing is referred to as the space between two cells of the same table while cell padding is referred to as the space between the contents of a cell or cell border.
Void elements are elements that have only the start tags and don’t contain any content within them.
<!DOCTYPE html>
<html>
<head>
<title>Table</title>
</head>
<body>
<table border = "2">
<tr>
<td>row1,cell1</td>
<td>row1,cell2</td>
</tr>
<tr>
<td>row2,cell1</td>
<td>row2,cell2</td>
</tr>
</body> </html>
When the border attribute is set to zero, the default cell borders and thickness will be applied, whereas if a rule attribute is added to a tag, the border attribute will not be included. The default one-pixel border will be shown instead.
The element is used to define and specify content in a document that is independent of the document. This element is used for defining blog posts, articles, and long-form posts.
There are three types of CSS elements that can be included.
These are:
Inline CSS - This is used for styling small contents. It is mainly used for styling attributes inside the HTML elements in the body section.
Internal CSS - This is used for adding tags in the section of the document. It is mainly for styling a single page that has a unique style.
External CSS - This is used when applying to multiple pages.
The default size for a text field is about 20 characters long. But if you include the size attribute one can set the size value to be as low as 1 and as high as the width of the browser width.
Web worker is a multithread object used for executing JavaScript. It runs in the background and doesn’t affect the performance of the webpage or application.
SVG is easy to scale, can be edited in any text editor, and the image quality is high no matter what the resolution is.
<!DOCTYPE html>
<html>
<head>
<style>
Body {
background-color :yellow;
}
</style>
</head> <body>
<h1>Yellow Home Page</h1>
</body> </html>
Copyrights © 2024 letsupdateskills All rights reserved