skip to main | skip to sidebar

Friday, July 12, 2013

Web Design Tutorial Part(4)

0 comments
HTML list use for sequentially set web content on website.   Bullets tag is needed for designing dynamic web site.

Bullet tag starts with <ul> tag. Every individual data start with <li> tag.

<ul>
<li>Google</li>
<li>Facebook</li>

</ul>

Iframe tag is use for show separate location on web page. Iframe tag start with iframe word.

<iframe src="Web Address" width="250" height="300"></iframe>

Text background color tag is
<p style="background-color:red">Color will depends on color name and code</p>