James Williams
<!-- Non-semantic -->
<div class="header">...</div>
<!-- Semantic -->
<header>...</header>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Web Application</title>
</head>
<body>
<header>
<h1>Site Title</h1>
<nav>...</nav>
</header>
<main>
<section>
<h2>Section Title</h2>
<article>...</article>
</section>
</main>
<footer>...</footer>
</body>
</html>
<head>
<title>CMM721: Web Application Development | Newman University</title>
<meta name="description"
content="Learn full-stack web development with HTML5, CSS3, JavaScript,
Python, Django, and React at Birmingham Newman University.">
</head>
Create a semantic HTML structure for a web application
<header>
<h1>Tech Blog</h1>
<nav>
<ul>
<li><a href="/home">Home</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
</header>
<main>
<article>
<h2>Building Modern Web Apps</h2>
<p>Learn full-stack development...</p>
</article>
</main>
Evaluate a website for accessibility compliance
Prepare by reviewing CSS basics and thinking about responsive design principles.
Contact: JWilliams@Staff.newman.ac.uk
Office Hours: Available for consultation
Thank you for your attention!