Thursday 24 March 2016

click here sample video

http://www.naturefootage.com/stock-video/RED-EPIC-4K-5K-Ultra-HD-Samplehttp://www.naturefootage.com/stock-video/RED-EPIC-4K-5K-Ultra-HD-Sample

click here sample videos

/vimeo.com/6370469

simple html6 program

<html>
<head>
<title></title>
</head>
<body bgcolor="aqua">
<u>Dinner</u>
<dl>
<dt>-itle</dt>
<dt>-thosa</dt>
<dt>-pongal</dt>
<dt>-poori</dt>
<dt>-chappathi</dt>
<dt>-noodles</dt>
<dt>-bread</dt>
<dt>-uppuma</dt>
<dt>-onion roast</dt>
<dt>-egg roast</dt>
</dl>
</body
</html>

simple html5 progarm

<html>
<head>
<title></title>
</head>
<body bgcolor="orange">
<u>Lunch</u>
<dl>
<dt>-chappathi</dt>
<dt>-mashroom </dt>
<dd>-tham biryane</dd>
<dd>-vada cari</dd>
<dd>-raykola biryane</dd>
<dd>-tomatto pulav</dd>
<dd>-spicy fride rice</dd>
<dt>Non-veg</dt>
<dd>-chicken fry</dd>
<dd>-chicken roast masala</dd>
<dd>-muttan curry</dd>
<dd>-fish biryane</dd>
<dd>-egg biryane</dd>
<dd>-green chicken fry</dd>
</dl>
</body
</html>

simple html4 program

<html>
<head>
<title></title>
</head>
<body bgcolor ="hotpink">
<u>Breadfast</u>
<dl>
<dt>-itle</dt>
<dt>-thosa</dt>
<dt>-pongal</dt>
<dt>-poori</dt>
<dt>-chappathi</dt>
<dt>-noodles</dt>
<dt>-bread</dt>
<dt>-uppuma</dt>
</dl>
</body
</html>

simple html3 program

<html>
<head>
<title></title>
</head>
<body bgcolor="darkgoldenrod">
<strong><center>YOGESHWARI RESTURANT</center>
</strong>
</body>
</html>

simple html2 program

<html>
<head>
<title></title>
</head>
<body>
<sub>yogeshwari</i>
<ins>i am studying bca</small>
</body>
</html>

simple html1 program

<html>
<head>
<title></title>
</head>
<body>
<strong>yogeshwari</i>
<sub>i am studying bca</small>
</body>
</html>

simple html program


<html>
<head>
<title></title>
</head>
<body>
<b>k.yogeshwari</b><br>
<i>vidhya nikethan matric hr.sec school</i><br>
<u>seerappalli</u><br>
</body>
</html>

Basic of html program

<html>     All html programs are starts with html tags
<head>   
<title>my first program</title> this tag shows title of the site
</head>
<body> from thistag ur site's body is starting.Here you can add images and video
<h1>Courses</h1></br> to shows the text font
<u>BCA</u></br>
<u>BBA</u></br>
<u>B.Sc(cs)</u></br>
</body> Every html tags must be closed
</html>Here ur program ends