
- •1. What is w3c?
- •2. What is http?
- •3. What is xml? Give example.
- •4. What is html? Give example.
- •5. What is xhtml? Give example.
- •6. What is css? Give example.
- •7. Show how to add css to html. Give example.
- •8. What is the Difference between xml and html? Give example.
- •9. How we can convert html to xhtml? Give example.
- •10. Write examples that shows you how to add margins and padding to html using css
- •11. What is JavaScript? Write everything about it. JavaScript is a Scripting Language
- •12. What is Client side scripting language? Give example.
- •13. What is Server side scripting lanugages? Give example.
- •What can Server Scripts Do?
- •14. What is xampp?
- •15. What is dom html?
- •16. What is php?
- •17. What is MySql? and What is Queries?
- •Queries
- •19. Show how to create db in sql? Create a Database
- •20. Show how to create Table in sql? The sql create table Statement
- •Sql create table Syntax
- •21. Show how to add data to tables? sql insert into Syntax
- •The sql update Statement
- •Sql update Syntax
- •Php Simple e-Mail
- •30. Show main differences between Client and Server Side scripting languges?
- •31. The get Method
- •32. The post Method
- •33. PhpMyadmin
- •34. What is www?
- •35. What is site?
- •36. What is web site?
- •37. What is server?
- •38. What is interpretable language?
1. What is w3c?
W3C(World Wide Web Consortium) was created to ensure compatibility and agreement among industry members in the adoption of new standards. Prior to its creation, incompatible versions of HTML were offered by different vendors, increasing the potential for inconsistency between web pages.
2. What is http?
Short for HyperText Transfer Protocol, the underlying protocol used by the World Wide Web. HTTP defines how messages are formatted and transmitted, and what actions Web servers and browsers should take in response to various commands. For example, when you enter a URL in your browser, this actually sends an HTTP command to the Web server directing it to fetch and transmit the requested Web page.
The other main standard that controls how the World Wide Web works is HTML, which covers how Web pages are formatted and displayed.
3. What is xml? Give example.
XML stands for EXtensible Markup Language
XML is a markup language much like HTML
XML was designed to carry data, not to display data
XML tags are not predefined. You must define your own tags
XML is designed to be self-descriptive
XML is a W3C Recommendation
<!-- Edited by XMLSpy® -->
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
4. What is html? Give example.
HTML is a language for describing web pages.
HTML stands for Hyper Text Markup Language
HTML is a markup language
A markup language is a set of markup tags
The tags describe document content
HTML documents contain HTML tags and plain text
HTML documents are also called web pages
<html>
<body>
<h1>This is heading 1</h1>
</body>
</html>
5. What is xhtml? Give example.
XHTML stands for EXtensible HyperText Markup Language
XHTML is almost identical to HTML 4.01
XHTML is a stricter and cleaner version of HTML
XHTML is HTML defined as an XML application
XHTML is supported by all major browsers.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Title of document</title> </head>
6. What is css? Give example.
CSS stands for Cascading Style Sheets
Styles define how to display HTML elements
Styles were added to HTML 4.0 to solve a problem
External Style Sheets can save a lot of work
External Style Sheets are stored in CSS files
<head>
<style>
body {background-color:yellow;}
h1 {font-size:36pt;}
h2 {color:blue;}
p {margin-left:50px;}
</style>
</head>
The id selector is used to specify a style for a single, unique element.
#para1 { text-align:center; color:red; }
The class selector is used to specify a style for a group of elements. Unlike the id selector, the class selector is most often used on several elements.
.center {text-align:center;}
There are three ways of inserting a style sheet:
External style sheet
Internal style sheet
Inline style