Background Attribute Example – HTML Syntax – Background HTML Example
Get 5 Hours of FREE PREMIUM Videos:
LearnVisualStudio.NET Free Preview
“ I am a lifetime member of LearnVisualStudio.net and a Premium Plus member of dotNetVideos.net.
LearnVisualStudio.net is awesome because it grows in value each year as more videos are added.
dotNetVideos.net is also great because it focuses a lot on MS Certifications and practical interview questions.
”
- Wade Harvey (IdealProgrammer.com)
Premium (Not Free) Video Tutorials
Free Video Tutorials & Free Tools
Background Attribute Example – HTML Syntax – Background HTML Example
Summary: – Illustrates the HTML Syntax for the background attribute.
Prerequistes:
- Install Visual Web Developer 2008 – We are using Visual Web Developer for a development environment so that we can build a website of syntax examples. It also helps by providing intellisense and debugging assistance.
If you do not want to build a library of syntax examples, you can download an excellent free html editor at nvu
Restrictions: None
Notes:
- You can build your own library of syntax examples by using same web site over and over and just add new files to it.
Instructions:
- Use Visual Web Developer 2008
- Create new web site;
- Click File/New Web Site
- Select ASP.NET Website Template
- Select C-Sharp for Language
- name of Web Site could be HTML_Syntax.
- Add New folder named "BackgroundAttributes"
- Right-click project name in solution explorer;
- add new folder;
- name of folder should be: BackgroundAttributes
- Add HTML Page Named Abbr to BackgroundAttributes folder
- Right-click BackgroundAttributes folder;
- add new item;
- Select HTML Page
- HTML Page name could be bgcolor
- Click on copy code in code below to copy code into HTML Page bgcolor.htm
- Right-click on HTML page bgcolor and select view in browser
Purpose: bgcolor="color" or bgcolor="#rrggbb" Specifies the background color for an element.
| HTML | | copy code | | ? |
<html> |
<head> |
<title>Example For bgcolor</title> |
</head> |
<body> |
<!--bgcolor="color" or bgcolor="#rrggbb"--> |
<table bgcolor="red"> |
<!-- row 1--> |
<tbody> |
<tr height="50px"> |
<td bgcolor="blue">table |
cell</td> |
<td>table cell2</td> |
</tr> |
<!-- row 2--> |
<tr colspan="2" bgcolor="green" height="50px"> |
<td></td> |
<td></td> |
</tr> |
<!-- row 3--> |
<tr colspan="2" bgcolor="#ffff00" height="50px"> |
<td></td> |
<td></td> |
</tr> |
</tbody> |
</table> |
</body> |
</html> |
No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.













































