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>

Finding a Visitor’s Coordinates

Getting the position information of the site visitor using the HTML5 geolocation API is fairly simple. It utilizes the three methods that are packed into the navigator.geolocation object — getCurrentPosition(), watchPosition() and clearWatch(). The following is a simple example of geolocation that displays your current position. But, first you need to agree to let the browser tell the web server about your […]

Embed a Facebook page’s feed into website Page

If you want to show a facebook page’s content into your website is’s simple, no programming required. Go to https://developers.facebook.com/docs/plugins/page-plugin/ and fill up the setting and then generate code. After generate code just paste the code into your webpage where you want to show facebook’s post. For sample :Paste the code into just after body […]