**A Form and A Table Example**
Below is a basic HTML code for the creation of a meaningful form and table containing invaluable information.
```
<!DOCTYPE html>
<html>
<head>
<title>My Form & Table Example</title>
</head>
<body>
<header>
<h1>My Form & Table Example</h1>
<p><em><strong>The creation of form and table to demonstrate understanding of topics taught at Blockfuse Labs, Jos, Nigeria.</strong></em></p>
</header>
<hr />
<main>
<!-- The Form Section -->
<h3>School Admission Form</h3>
<p><strong><em>Pleae provide your details to apply.</em></strong></p>
<!-- Form Section -->
<form>
<label>Student's Name: </label>
<input type="text" placeholder="First" /> <input type="text" placeholder="Last" /><br /><br />
<label>Class Applied For: </label>
<select>
<option></option>
<option>Play Class</option>
<option>Nursery</option>
<option>Primary One</option>
<option>Primary Two</option>
<option>Primary Three</option>
<option>Primary Four</option>
<option>Primary Five</option>
<option>JSS One</option>
<option>JSS Two</option>
<option>JSS Three</option>
<option>SS One</option>
<option>SS Two</option>
<option>SS Three</option>
</select><br /><br />
<label>Student's DoB: </label>
<input type="date" /><br /><br />
<label>Gender:</label>
<label>♂ Male</label>
<input type="radio" name="gender" value="male" required>
<label>♀ Female</label><br /><br />
<label>Parent/Guardian's Name: </label>
<input type="text" placeholder="First" /> <input type="text" placeholder="Last" /><br /><br />
<label>Current Address: </label>
<textarea rows="4"></textarea><br /><br />
<label>Phone Number: </label>
<input type="number" /><br /><br />
<label>Email: </label>
<input type="email" /><br /><br />
<input type="checkbox" /> <label>By submitting this application, you agree to our <a href="">Terms and Conditions</a> and <a href="">Privacy Policy</a>.</label><br /><br />
<button>Submit</button>
</form>
<hr />
<!-- The Table Section -->
<h3>A Table Data Presentation</h3>
<table>
<caption><strong>Artificial Intelligence and Cloud Computing Companies</strong></caption>
<thead>
<tr>
<th>S/No</th>
<th>Company</th>
<th>Year Founded</th>
<th>Founders</th>
<th>Solutions</th>
<th>Total Valuation (Approximate)</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Microsoft</td>
<td>1975</td>
<td>Bill Gates, Paul Allen</td>
<td>Azure Cloud, AI Solutions</td>
<td>$3.158 trillion</td>
</tr>
<tr>
<td>2</td>
<td>Alphabet (Google)</td>
<td>1998</td>
<td>Larry Page, Sergey Brin</td>
<td>AI Research, Cloud Services</td>
<td>$2.350 trillion</td>
</tr>
<tr>
<td>3</td>
<td>Amazon</td>
<td>1994</td>
<td>Jeff Bezos</td>
<td>AWS Cloud Computing</td>
<td>$3.158 trillion</td>
</tr>
<tr>
<td>4</td>
<td>Microsoft</td>
<td>1975</td>
<td>Bill Gates, Paul Allen</td>
<td>Azure Cloud, AI Solutions</td>
<td>$3.158 trillion</td>
</tr>
<tr>
<td>5</td>
<td>NVIDIA</td>
<td>1993</td>
<td>Jensen Huang, Chris Malachowsky, Curtis Priem</td>
<td>AI Hardware & Software</td>
<td>Part of NVIDIA's overall valuation</td>
</tr>
<tr>
<td>6</td>
<td>IBM</td>
<td>1911</td>
<td>Charles Ranlett Flint</td>
<td>AI and Quantum Computing</td>
<td>$180 billion</td>
</tr>
<tr>
<td>7</td>
<td>Salesforce</td>
<td>1999</td>
<td>Marc Benioff, Parker Harris, Dave Moellenhoff, Frank Dominguez</td>
<td>CRM and AI Solutions</td>
<td>Part of Salesforce's overall valuation</td>
</tr>
<tr>
<td>8</td>
<td>OpenAI</td>
<td>2015</td>
<td>Elon Musk, Sam Altman, Greg Brockman, Ilya Sutskever, John Schulman, Wojciech Zaremba</td>
<td>Generative AI</td>
<td>Not publicly disclosed</td>
</tr>
<tr>
<td>9</td>
<td>Snowflake</td>
<td>2012</td>
<td>Benoît Dageville, Thierry Cruanes, Marcin Żukowski</td>
<td>Cloud Data Warehousing</td>
<td>Part of Snowflake's overall valuation</td>
</tr>
<tr>
<td>10</td>
<td>Palantir Technologies</td>
<td>2003</td>
<td>Peter Thiel, Nathan Gettings, Joe Lonsdale, Stephen Cohen, Alex Karp</td>
<td>Big Data Analytics</td>
<td>Part of Palantir's overall valuation</td>
</tr>
</tbody>
</table>
</main>
<hr />
<!-- Footer Section -->
<footer>
<form>
<h3>Leave a Mesage</h3>
<label>Name</label>
<input type="text" /><br /><br />
<label>Email</label>
<input type="email" /><br /><br />
<label>Message</label>
<textarea rows="3"></textarea><br /><br />
<button>Submit</button>
</form>
<hr />
<p>© 2025 Plang's Forms and Tables at Blockfuse Labs, Jos-Nigeria. All rights reserved.</p>
</footer>
</body>
</html>
```