Difference between revisions of "Example:HTML"

From WikiFind
Jump to navigation Jump to search
(Created page with "== Basic HTML == <pre> <!DOCTYPE html> <html lang="en"> <meta charset="UTF-8"> <title>Page Title</title> <meta name="viewport" content="width=device-width,initial-scale=1"> <l...")
 
Line 25: Line 25:
</html>
</html>
</pre>
</pre>
[[Category:Example]]
[[Category:Example HTML]]
[[Category:Example HTML]]

Revision as of 12:37, 11 January 2021

Basic HTML

<!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>

<a href="https://wikifind.org/index.php/Foundations" target="_blank">Foundations</a>
<br>
<img src="img_la.jpg" alt="LA" style="width:100%">

<div class="">
 <h1>This is a Heading</h1>
 <p>This is a paragraph.</p>
 <p>This is another paragraph.</p>
</div>

</body>
</html>