Difference between revisions of "Example:HTML"
Jump to navigation
Jump to search
Glenjohnson (talk | contribs) |
Glenjohnson (talk | contribs) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 12: | Line 12: | ||
<body> | <body> | ||
<img src="https://wikifind.org/wiki.png" alt="icon"> | |||
<br> | |||
<a href="https://wikifind.org/index.php/Foundations" target="_blank">Foundations</a> | <a href="https://wikifind.org/index.php/Foundations" target="_blank">Foundations</a> | ||
<br> | <br> | ||
<div class=""> | <div class=""> | ||
Latest revision as of 13:10, 11 January 2021
Basic HTML[edit]
<!DOCTYPE html> <html lang="en"> <meta charset="UTF-8"> <title>Page Title</title> <meta name="viewport" content="width=device-width,initial-scale=1"> <link rel="stylesheet" href=""> <style> </style> <script src=""></script> <body> <img src="https://wikifind.org/wiki.png" alt="icon"> <br> <a href="https://wikifind.org/index.php/Foundations" target="_blank">Foundations</a> <br> <div class=""> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </div> </body> </html>