Basic HTML basic project for whom wants to excute and run sample html code
Size: 975.24 KB
Language: en
Added: Jul 21, 2018
Slides: 7 pages
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>