Skip to content

Instantly share code, notes, and snippets.

@harsimranmaan
Created November 8, 2022 01:56
Show Gist options
  • Save harsimranmaan/004264b5be0217be7dc32a6a7409cbb4 to your computer and use it in GitHub Desktop.
Save harsimranmaan/004264b5be0217be7dc32a6a7409cbb4 to your computer and use it in GitHub Desktop.
Web dev Program for youth
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title of the web page</title>
<!-- Add a link to a CSS file -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous" />
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<table>
<table class="table table-hover table-bordered">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">My hobby</th>
<th scope="col">Reason</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Teaching</td>
<td>Enjoy Sharing what I know with others</td>
</tr>
<tr>
<td>2</td>
<td>Watching Soccer</td>
<td>Team sport. Games are short, intense and fun</td>
</tr>
<tr>
<td>3</td>
<td>Travel</td>
<td>Meet people from various backgrounds. Great for learning</td>
</tr>
</tbody>
</table>
<img height="228" width="306" src="https://images2.pics4learning.com/catalog/s/sam_1030.jpg" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment