You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
3.4 KiB

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Learning Website</title>
<link href="/styles/styles.css" rel="stylesheet" type="text/css">
<link href="styles/homepagestyles.css" rel="stylesheet">
<link href="/webdevelopment/styles/styles.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="banner">
<h1 class="coursetitle">HTML Essential Training</h1>
<h2 class="lecturer">LinkedIn Learning : Jen Simmons</h2>
<h2 class="episodetitle">Conclusion</h2>
</div>
<article>
<h1 class="sectiontitle">How to Keep Learning and HTML Specifications</h1>
<p>This course has provided a fairly comprehsive introduction to HTML. Certainly, there is enough taught in the course to allow you to create web sites such as this one. At the same time, I think it has made clear the fact that HTML is a really huge subject and that there is a lot more to learn. It also demonstrates quite well that if you use HTML in the way that it was designed to be used, which I do to some extent in these pages, that is going to give you a good start in terms of developing a site that is going to be accessible and search-engine friendly.</p>
<p>The online HTML documentation at <a href="https://developer.mozilla.org/en-US/docs/Web/HTML">Mozilla</a> is a hugely important resource for looking up features of HTML that you are unfamiliar with or that perhaps you are familiar with but don't remember all of the relevant details. There is a lot of valuable information in the documentation inclduing examples and advice on how to use the HTML correctly.</p>
<p>The canonical source of information on HTML is the standard which is published on the <a href="https://html.spec.whatwg.org/multipage/">whatwg.org</a> website.</p>
<p>To help make sure a website is accessible. it is worth checking out <a href="https://www.w3.org/TR/WCAG21/">WCAG</a> - the Web Content Accessibility Guidelines. This is the official W3C spec on the best practices in terms of accessibility.</p>
<p>Finally, perhaps an obvious point, if you want to learn HTML, you will almost certainly want to also learn CSS since it is not possible, these days, to produce an attractive or "cool" website with HTML alone. Remember, HTML covers content and CSS covers style. If you want some interactivity with your website, you will probably also want to learn more about JavaScript and PHP.</p>
</article>
<br><br>
<button class="previous" onclick="window.location.href='tabularhtml';">
Previous Chapter - Structuring Tabular Data
</button>
<button class="coursebutton" onclick="window.location.href='htmlessentialtraining.html'">
Course Contents
</button>
<button class="webdevbutton" onclick="window.location.href='/webdevelopment/webdevelopment.html'">
Web Development Page
</button>
<button class="homebutton" onclick="window.location.href='/index.html'">
Home
</button>
<br><br><br><br>
</body>
3 months ago
</html>