Write a program to display tables in HTML Programming Language
Name of Program - Program to display text color
Text Editor - Notepad, Notepad++, Visual Studio Code, Atom, etc.
Code Input-
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables</title>
</head>
<body>
<table border = "1">
<tr>
<td>Sr. No</td>
<td>Software Name</td>
</tr>
<tr>
<td>1</td>
<td>Visual Studio Code</td>
</tr>
</table>
</body>
</html>
Output Screen - Internet Browser, Google Chrome, Microsoft Edge, etc.
Code View -
Post a Comment