Tables are a great way to present data visually. Tables allow us to display large amounts of data in a structured way (rows and columns) that is easy to read and understand. In this blog, we will learn about HTML tables. You will understand the basics of HTML tables, such as rows, cells, adding captions, and making […]
Html
Html Class 29-12
<html>
<head>
<title>Html class 1st</title>
</head>
<body >
<table border="1" width="100%" >
<tr>
<td colspan="4" style="text-align: center"; >Table</td>
</tr>
<tr style="background-color: #d6ce16;color:green;font-size:40px;">
<td>sl</td>
<td>name</td>
<td>age</td>
<td>class</td>
</tr>
<tr style="background-color: red;">
<td>1</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>3</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
<td>4</td>
<td>aaa</td>
<td>2</td>
<td>1</td>
</tr>
</table>
<h1 style="color: #d6ce16 ">This is h1 tag</h1>
<h2 style="color:green">This is h1 tag</h2>
<h3 style="color:blue">This is h1 tag</h3>
<p style="color:pink">this is p tag</p>
<div style="background-color: #d6ce16;">this is div tag</div>
<div style="background-color:#0e0afa"; >this is another div tag</div>
<marquee direction="left"><h1 style="color: #d6ce16;font-size:80px;">1welcome to html class</h1></marquee>
<img src="C:\Users\admin\Desktop\APURBA\paint.png" width="200px";height="200px";>
</body>
</html>
- Basic Computer
- ...
Html Class 1
<!DOCTYPE html>
<html>
<head>
</head>
<body >
<a href="https://www.yahoo.com/">click me this</a>
<div style="background-color:red">sample div area </div>
<div style="background-color:green">sample div area </div>
<div style="background-color:orange">sample div area </div>
<div >sample div area
<h1 style="color:blue;font-family:courier;font-size:50px" >My First Heading h1</h1>
<h1 style="color:blue;">My second Heading h1</h1>
<h3 style="color:red;">My third Heading h3</h3>
<h4>My Forth Heading h4</h4>
<p>This is paragraph tag</p>
<p>This is paragraph tag</p>
</div>
<img src="C:\Users\admin\Desktop\555\1200.jpg" alt="avcbgbhb" width="700px" height="700px">
</body>
<footer>
</footer>
</html>