COMM-101 Web Modification Lab

River Hawk Rockets Website Project

HTML Reference

HTML creates the structure and content of a webpage. These are the main tags you will use in this project.

Headings

Headings create titles and section labels.

<h1>Main Website Title</h1>
<h2>Page Section Title</h2>
<h3>Card Title</h3>

Paragraphs

Paragraphs hold regular body text.

<p>This is a sentence on the webpage.</p>

Links

Links connect one page to another page.

<a href="players.html">Players</a>

The href tells the browser where to go. The text between the tags is what people see.

Images

Images display graphics and photographs.

<img src="images/player1.jpg" alt="Player portrait">

Divs and Classes

A div is a container. A class connects HTML to CSS styling.

<div class="player-card">
    <h3>Player Name</h3>
    <p>First Year | Midfielder</p>
</div>