C# ASP.NET ADO.NET JAVASCRIPT JQUERY AJAX SILVERLIGHT WPF
Tutorials
C# OOPS HTML&CSS DHTML ASP.NET ADO.NET JAVASCRIPT JQUERY AJAX SILVERLIGHT MVVM WPF SQL SERVER Photoshop Dreamweaver Flash Illustrator
Interview Question
Blog Archive
-
2012
(83)
- September(2)
-
August(81)
- Important WPF Classes and Namespaces
- Applications of WPF
- Programming With WPF
- Limitations of Silverlight and flash
- Silverlight Feature comparison with Flash Features
- How to Add XML File in Your Silverlight Project
- 3 Pixel Shader Effects in Silverlight
- Rotate Image in 3D direction using Silverlight
- First Application of Silverlight
- Silverlight 2.0
- How Install Ajax?
- Ajax Advantage
- JavaScript Loops
- Show a Military Clock and ordinary clock
- How To validate a Form in ASP. Net
- How to show Day of Week
- How to Swap a Image using JavaScript
- Special Character in JavaScript
- Prompt Box in JavaScript
- The use of data adapter.?
- The steps involved to fill a dataset?
- Dataset object in ADO .NET
- Handling Connection Events
- The SQLCONNECTION OBJECT
- Command Constructors
- The SQLCOMMAND OBJECT
- Gridview in ASP.NET
- Introduction Of Master Page
- Server Side State Management
- Query String In ASP.NET
- Cookies in ASP.NET
- State Management in ASP.NET
- Various types of application that we can develop i...
- Properties
- Inheritance ,Polymorphism
- Array,Indexer and Collections
- Control Statements
- Operators, types and variables in C#
- Fundamental of C#
- C# & other Programming Languages
- The WPF Designer
- C# DataTypes
- What is Ajax?
- Silverlight 1.0
- Confirm Box in JavaScript
- Component classes
- Life Cycle of ASP.NET
- The Basics of JQuery
- Jquery Blog Content
- Birth Of WPF
- .Net Frameworks Architecture
- History Of Ajax
- Why Silverlight?
- How to access a URL of parent page in ASP. net
- THE ADO.NET Architecture?
- Architecture of ASP.NET
- Introduction Of Ajax
- Ajax Blog Content
- Introduction of SilverLight
- Silverlight Blog Content
- Introduction to Javascript Blog
- Javascript Blog Content
- Introduction to Ado.Net blog
- Ado.Net Blog Content
- Introduction to C# Blog
- C# Blog Content
- Introduction to Asp.Net
- Asp.Net Blog Content
- Introduction to WPF
- WPF Blog Content
- WPF Interview Question
- Silverlight Interview Question
- Ajax Interview Question
- JQuery Interview Question
- Javascript Interview Question
- DHTML Interview Question
- Ado.Net Inetview Questions
- SQL Interview Questions
- HTML&CSS Interview Questions
- Asp.Net Interview Qusetions
- C# Interview Questions
HTML&CSS Interview Questions
HTML Interview Questions And Answers
| Ques: 1 WHAT is the HTML? | |
|
| Ques: 2 What do you know about HTML tags? | |
1.In HTML,every keyword should be surrounded with open and closed with angled brackets. Example:<html>,<body>,<title>,<head> etc. 2.HTML tags are not case sensitive means that suppose if we open <Html> tags than we can closed this tag with <html> . 3.When we open an HTML tag it should we have to closed tag.Like: <a>....</a> 4.In the above point tag (<a>) is called the open tag.where as tag</a> is called the end tag . Example: <head> <body> ..... ..... </body> </head> |
| Ques: 3 What are basic HTML tags how we use them? | |
1.Heading<h1...h6>:Range of HTML headings is from h1 to h6.When we go h1 to h6 its headings become larger and bold. Example: <h1>Write HTML heading between those tags</h1> <h2>Write HTML heading between those tags</h2> ........ ........ <h6>Write HTML heading between those tags</h6> 2.Paragraph<p>...</p>:We write paragraph in HTML by using <p>.....</p> tag. Example: <p>Write here a paragraph</p> 3.Link:Using this we can link our HTML file with some other files. Example: <a href="http://www.R4R.co.in"></a> 4.Image:It is used to describe the image in HTML. <img src="welcome.gif" width="200" height="75" /> |
| Ques: 4 Can we write a comment into the HTML? | |
<!-- Here write your comment --> Example: <html> <body> <!--Which you here not will diplayed on browser--> <p>R4R Welcomes You!</p> </body> </html> output: R4R Welcomes You! |
| Ques: 5 How to use Line Break and Horizontal Line tags in HTML? | |
Syntax: <br /> In HTML <br /> has no end tag. Example: <p>Hello<br />client<br />R4R Welcomes You!</p> output: Hello client R4R Welcomes You! For creating horizontal line we use <hr /> in HTML. Syntax: <hr /> Example: <p>This is upper level</p> <hr /> <p>This is middle level</p> <hr /> <p>This is bottom level</p> Both <br /> and <hr /> called as empty tags. Because their is no end tag for them. |
| Ques: 6 What are the benefits of HTML? | |
Data Source Independence Interoperability Strongly Typed Fields Performance |
Labels:
Interview Question









