HTML – Email Links
An HTML hyperlink can be used to create a link to an email address. A default subject and body can be included.
An HTML hyperlink can be used to create a link to an email address. A default subject and body can be included.
In HTML/CSS there are specific entities that can be placed via code. This is a list of some of the most used HTML entities and their CSS equivalents.
By wrapping and image inside a hyperlink the image becomes a clickable link. This is often uses to allow the user to view a larger version of the image.
The <blockquote> tag and <q> tag both define a section of text that is quoted from another source and may need to stand out on their own.
The HTML hyperlink uses an <a> tag to create a link to another document, image, video, or to a section of the current document.
Use a line break <br> if you want to start a new line without starting a new paragraph (using the <p> tag).
The <hr> tag creates a horizontal line that spans the width of the element it sits within to visually separate sections of a document.
A non-breaking space can be used between words so that the browser doesn’t split the words across two lines.
HTML tables allow for data to be arranged into rows and columns using the <table> tag, which contains the <tr> tag for rows and the <td> tag for data cells.
Table size, borders, cell padding, cell spacing, can all be changed by using attributes. Multiple rows or columns can be merged into one.
Advanced HTML tables may contain <thead>, <tbody>, and <tfoot> tags, along with a <caption> to give the data better structure. Other than that, there isn’t any difference from a basic table structure.
There are three different types of HTML lists: ordered lists, unordered lists, and definition lists.
To expand on the basic HTML form, we can add text inputs, textarea inputs, checkboxes, and radio buttons to gather user information to be sent to a server for processing.
An HTML <iframe> is used to create a rectangular region, including scrollbars and borders, in one web page to display another web page.
Embedding a YouTube video on your site is as easy as going to the video on YouTube, clicking their share button, and grabbing the embed code.
The <canvas> tag is used to draw graphics on the page using a scripting language like JavaScript.
SVG stands for Scalable Vector Graphics and is used to define graphics for the web using the XML format.