Alt Attribute Example – HTML Syntax – Alt HTML Example


Putting
the Pieces of .NET Together - 8 Part Video Series | ||||
| Introduction | ||||
| Videos 1-4 | 1. Servers (3 minutes) | 2. .NET Framework (10 minutes) | 3. Security (8 minutes) | 4. Monitoring Tools (10 minutes) |
| Videos 5-8 | 5. Web Servers (6 minutes) | 6. SQL Server (6 minutes) | 7. Software Develop Tools (10 minutes) | 8. Languages (2 minutes) |
| Download PDF | Putting the Pieces of .NET Together - 48-page PDF | |||
Alt Attribute Example – HTML Syntax – Alt HTML Example
Summary: – Illustrates the HTML syntax for the alt 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 "BasicAttributes"
- Right-click project name in solution explorer;
- add new folder;
- name of folder should be: BasicAttributes
- Add HTML Page Named Alt to BasicAttributes folder
- Right-click BasicAttributes folder;
- add new item;
- Select HTML Page
- HTML Page name should be alt
- Click on copy code in code below to copy code into HTML Page alt.htm
- Right-click on HTML page alt and select view in browser
Purpose: alt="alt text" – Specifies text to display when image can not be shown.
| HTML | | copy code | | ? |
<html> |
<head> |
<title>Example For alt</title> |
</head> |
<body> |
<a href="http://www.LearnVisualStudio.NET/119.html" target="_blank"><img alt="Learn Visual Studio" src="http://www.idealprogrammer.com/wp-photos/LearnVisualStudio.png"/></a> |
</body> |
</html> |
Related posts:
- Border Attribute Example – HTML Syntax – Border HTML Example Border Attribute Example - HTML Syntax - Border HTML Example...
- Background Attribute Example – HTML Syntax – Background HTML Example Background Attribute Example - HTML Syntax - Background HTML Example...
- Face Attribute Example – HTML Syntax – Face Attribute Example Face Attribute - HTML Syntax - Example...
- Scroll Attribute Example – HTML Syntax – Scroll Attribute Example Scroll Attribute Example - HTML Syntax - Scroll Attribute Example...
- Unselectable Attribute Example – HTML Syntax – Unselectable Example Unselectable Attribute Example - HTML Syntax - Unselectable Example...
Related posts brought to you by Yet Another Related Posts Plugin.
