Background Image Paragraph Alignment Horizontal Ruled Line HR
HTML For Beginners To Master The Easy Way To Start Learning HTML
Our HTML tutorial material is developed for beginners to Master Level Programmer up to project level. In our tutorial, each and every topic is given step-by-step so that you can learn it in a very easy way. You need not to search for more information
Question 2)
Write HTML program to design a Web page having background image 2 paragraphs with different alignments use horizontal ruled line to separate the paragraphs.
Source Code of above question is given below.
<html>
<head>
<title>HTML
Question Bank</title>
</head>
<body
background="pic.jpg">
Write HTML program to design a Web page having background image 2 paragraphs
with different alignments use horizontal ruled line to separate the paragraphs.
<font
size=+2>
<p
align="right">
This
is my personal blog.All the topics is prepare my self on the bases of past
teaching of 20 years plus. Our HTML tutorial material is developed for
beginners to Master Level programmer up to project level. In our tutorial, each
and every topic is given step-by-step so that you can learn it in a very easy
way. You need not to search for more information
</p>
<hr
size=4 color="green">
<p
align="left">
This
is my personal blog.All the topics is prepare my self on the bases of past
teaching of 20 years plus. Our HTML tutorial material is developed for beginners
to Master Level Programmer up to project level. In our tutorial, each and every
topic is given step-by-step so that you can learn it in a very easy way. You
need not to search for more information
</p>
<hr
size=4 color="blue">
<p
align="center">
This
is my personal blog.All the topics is prepare my self on the bases of past
teaching of 20 years plus. Our HTML tutorial material is developed for beginners
to Master Level Programmer up to project level. In our tutorial, each and every
topic is given step-by-step so that you can learn it in a very easy way. You
need not to search for more information
</p>
</font>
</body>
</html>
The output is the program is :
CHAPTER 1 CHAPTER 2 CHAPTER 32 CHAPTER 4 CHAPTER 5
CHAPTER 6 CHAPTER 7 CHAPTER 8 CHAPTER 9 CHAPTER 10
Post a Comment