<!DOCTYPE html>, <html>, <head> and <body> to define the basic structure.<head> I used <meta> for character set and viewport, <title> for page titles and <link> to connect CSS and favicon.<header> on each page with <div class="logo"> and <div class="navbar">, plus a <ul> list of <a> links for navigation.<div class="hero-image"> with a <video> and nested <source> tag for the hero background video.<div class="hero-text"> and <div class="hero-buttons"> to place headings and the “Book Now!” button on top of the video.<h1>–<h6> for titles such as “Featured Photos”, “About Dom Studios”, “Webdev1”, and the Terms & Conditions sections.<p> tag, including About content, Webdev1 explanations, and footer copyright text.<div> elements with classes like "grid-container", "grid-container2", "item", and "portfolio" with <img> tags using src and alt attributes.<main> and <section> tags and built the form with <form>, <label>, <input>, <textarea>, <select>, and <option>.<main> and multiple <section> blocks with headings and <address> for structure.<div class="footer"> which includes <nav> and copyright text.styles.css to style fonts, colours, spacing, layout, images, and responsiveness.body sets the base theme using background colour, font family and default size.header uses Flexbox (display: flex;, justify-content:, align-items:) to keep the logo and navigation aligned..navbar) uses Flex layout, spacing, hover effects and an active state.position: relative; and object-fit: cover; for full-bleed video.position: absolute; to overlay.auto-fit, minmax, gap) to stay responsive.border-radius, transition and hover scale + shadow.max-width for readability.@media (max-width: 600px) to stack the header, resize the logo, adjust grids, increase text size and improve padding on small screens.The purpose of my website is to showcase my photography (mostly shot on a mobile phone and edited in Adobe Lightroom) and to introduce Dom Studios as my personal creative brand. Building a multi-page site allowed me to demonstrate my understanding of core HTML structure and CSS styling from ISYS1001 Modules.