Meta Description" name="description" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced HTML Only Page</title>
</head>
<body>
<header>
<h1>Student Portal</h1>
<nav>
<ul>
<li><a href="#dashboard">Dashboard</a></li>
<li><a href="#form">Registration</a></li>
<li><a href="#data">Data Table</a></li>
<li><a href="#media">Media</a></li>
</ul>
</nav>
</header>
<main>
<!-- DASHBOARD -->
<section id="dashboard">
<h2>Dashboard</h2>
<article>
<h3>Notifications</h3>
<details>
<summary>Click to expand</summary>
<p>Exam schedule released.</p>
<p>Assignment deadline tomorrow.</p>
</details>
</article>
<article>
<h3>Progress</h3>
<label>HTML</label>
<progress value="80" max="100"></progress>
<label>Math</label>
<progress value="60" max="100"></progress>
</article>
</section>
<!-- FORM -->
<section id="form">
<h2>Student Registration</h2>
<form>
<fieldset>
<legend>Personal Info</legend>
<label>Name:</label>
<input type="text" required>
<label>Email:</label>
<input type="email" required>
<label>Password:</label>
<input type="password" required>
<label>Age:</label>
<input type="number" min="10" max="100">
</fieldset>
<fieldset>
<legend>Preferences</legend>
<label>Course:</label>
<select>
<option>Science</option>
<option>Commerce</option>
<option>Arts</option>
</select>
<p>Gender:</p>
<input type="radio" name="gender"> Male
<input type="radio" name="gender"> Female
<p>Skills:</p>
<input type="checkbox"> HTML
<input type="checkbox"> Python
<input type="checkbox"> Math
</fieldset>
<input type="submit" value="Register">
</form>
</section>
<!-- TABLE -->
<section id="data">
<h2>Student Data</h2>
<table border="1">
<caption>Top Students</caption>
<thead>
<tr>
<th>Name</th>
<th>Marks</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>Rahul</td>
<td>95</td>
<td>A</td>
</tr>
<tr>
<td>Sneha</td>
<td>88</td>
<td>B</td>
</tr>
<tr>
<td>Arjun</td>
<td>92</td>
<td>A</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">End of Data</td>
</tr>
</tfoot>
</table>
</section>
<!-- MEDIA -->
<section id="media">
<h2>Media Section</h2>
<figure>
<img src="https://via.placeholder.com/200" alt="Sample Image">
<figcaption>Sample Image</figcaption>
</figure>
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
</audio>
<video width="300" controls>
<source src="video.mp4" type="video/mp4">
</video>
</section>
</main>
<footer>
<p>© 2026 Student Portal</p>
</footer>
</body>
</html>4
2
5KB
5KB
110.0ms
196.0ms
225.0ms