Sample html basic projects

SatishShende1 136 views 7 slides Jul 21, 2018
Slide 1
Slide 1 of 7
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7

About This Presentation

Basic HTML basic project for whom wants to excute and run sample html code


Slide Content

Sample HTML Basic projects
Collection by
Satish Shende
[email protected]

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

<!DOCTYPE html>
<html>
<body>

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

</body>
</html>

<!DOCTYPE html>
<html>
<body>

<a href="https://www.facebook.com/">This
is a link</a>

</body>
</html>
Using link

<!DOCTYPE html>
<html>
<body>

<img src="8nr4.gif" width="200" height="200">

</body>
</html>
image

<!DOCTYPE html>
<html>
<head>
<title> MARQUEE </title>
</head>
<body>
<h1> Welcome to my webpage </h1>


<MARQUEE WIDTH=200 HEIGHT=50>
Howdy!
</MARQUEE>

<p>This is sample MARQUEE</p>
<MARQUEE HSPACE=50 WIDTH="25%" BGCOLOR=YELLOW><p>Howdy
there!</p><p>Good to see ya!</p></MARQUEE>


</body></html>

<!DOCTYPE html>
<html>
<body>

<h2>Radio Buttons</h2>

<form>
<input type="radio" name="gender" value="male" checked>
Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
</form>

</body>
</html>
Radio Buttons