Landing : Athabascau University

unit 2 html website

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Tetravon Inc. - Home</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<div id="header">
<h1>Tetravon Inc.</h1>
<h2>Emissions & Environmental Engineering Solutions</h2>
</div>

<div id="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Our Services</a></li>
</ul>
</div>

<div id="content">
<div id="welcome">
<img src="images/environment.jpg" alt="Green environment" width="400" height="200" />
<p><span class="highlight">Welcome</span> to Tetravon Inc., your trusted partner in <span class="highlight">sustainable environmental engineering</span>. We provide innovative solutions to reduce emissions and enhance environmental sustainability.</p>
<ul>
<li>Industry Expertise</li>
<li>Commitment to Innovation</li>
<li>Client-Centric Approach</li>
</ul>
</div>

<div id="table-section">
<h3>Our Core Services</h3>
<table border="1">
<tr>
<th>Service</th>
<th>Description</th>
</tr>
<tr>
<td>Emission Testing</td>
<td>Comprehensive testing services to measure emissions accurately.</td>
</tr>
<tr>
<td>Environmental Consulting</td>
<td>Professional guidance to help businesses meet environmental standards.</td>
</tr>
<tr>
<td>Sustainable Solutions</td>
<td>Customized solutions to reduce environmental impact.</td>
</tr>
</table>
</div>

<div id="contact-form">
<h3>Contact Us</h3>
<form action="mailto:your-email@example.com" method="post" enctype="text/plain">
<label for="name">Name:</label><br />
<input type="text" id="name" name="name" required="required" /><br />

<label for="email">Email:</label><br />
<input type="email" id="email" name="email" required="required" /><br />

<label for="message">Message:</label><br />
<textarea id="message" name="message" rows="4" required="required"></textarea><br />

<input type="submit" value="Submit" />
</form>
</div>
</div>

<div id="footer">
<p>© 2024 Tetravon Inc. | <a href="https://www.example.com" target="_blank">External Resource</a></p>
</div>
</body>
</html>