HTTPS
HTTPS
__________________________________________________________________________________________________
Opening of HTML
_<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
List
- Defines the unordered list: <ul>:
-- Defines a list item: <li>:
___ <ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
- Defines the ordered list: <ol>
-- Defines a list item: <li>
___<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
- Defines the definition list: <dl>
-- Defines a list item: <li>
- Defines a term (definition term): <dt>:
-- Defines a list item: <li>
- Defines a description (definition description): <dd>
-- Defines a list item: <li>
Forms
<form>
- Input Text
...........: <input type="text" name=”...”>
- iNput Password
............: <input type="password" name=”...”>
- radio
...............<input type="radio">
- Checkbox
..............<input type="checkbox">
- Select
.............<select name=”...”>
<option>..........</option>
- Input Submit
............<input type="submit" value="Submit">
- Input Reset
............<input type="reset" value="Reset">
Table
<table>
- Defines a table row: <tr>
- Defines a table header cell (usually bold and centered): <th>
- Defines a table data cell:<td>
___<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
</tr>
</table>
link
<a>
- href
<a href=”url”>.......</a>
__<a href=”url”>......</a>
Image
<img>
- src: Specifies the path to the image file.
<img src=”path/to/image.jpg”>
- alt: Provides alternative text for the image
<img alt=”description of image”>
- Width
<img width=”...”>
-height
<img height=”...”>
Audio
<audio>
- src: Specifies the path to the audio file
<audio src="path/to/audio.mp3">
- Loop: Specifies that the audio should start over again when finished.
<audio loop>
Line
<hr>
- Height
<hr height=”...”>
- Width
<hr width=”...”>
- color
<hr color=”...”>
Space
<Br>