Thursday, 24 March 2016

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