[go: up one dir, main page]

0% found this document useful (0 votes)
25 views2 pages

HTML

The document contains two HTML snippets. The first snippet features a simple web page with a main heading and a paragraph. The second snippet presents a table displaying names, ages, and countries of individuals.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views2 pages

HTML

The document contains two HTML snippets. The first snippet features a simple web page with a main heading and a paragraph. The second snippet presents a table displaying names, ages, and countries of individuals.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

1.

<html>
<head>
<title>My web page</title>
</head>
<body>
<h1>Hello, world!</h1>
<p>This is my first web page.</p>
<p>It contains a
<strong>main heading</strong> and <em>
paragraph </em>.
</p>
</body>
</html>
2.
<html>
<head>
<title>My web page</title>
</head>
<body>
<table border="1" >
<tr>
<th>Name</th>
<th>Age</th>
<th>Country</th>
</tr>
<tr>
<td>Harry Depp</td>
<td>28</td>
<td>Britain</td>
</tr>
<tr>
<td>John Smith</td>
<td>35</td>
<td>USA</td>
</tr>
<tr>
<td>Ram Krishna</td>
<td>19</td>
<td>Nepal</td>
</tr>
</table>
</body>
</html>

You might also like