Web development ppt used to design web applocation
Indu32
14 views
34 slides
Jul 14, 2024
Slide 1 of 34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
About This Presentation
Web development
Size: 93.92 KB
Language: en
Added: Jul 14, 2024
Slides: 34 pages
Slide Content
HTML Welcome to all
HTML Introduction HTML : HTML stands for H yper T ext M arkup L anguage HTML is not a programming language, it is a markup language A markup language is a set of markup tags HTML uses markup tags to describe web pages Html is platform independent language
What is CSS? What is CSS? CSS stands for C ascading S tyle S heets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem
What is JavaScript? What is JavaScript? JavaScript was designed to add interactivity to HTML pages .
DHTML DHTML is NOT a language. DHTML is a TERM describing the art of making dynamic and interactive web pages. DHTML combines HTML, JavaScript, the HTML DOM, and CSS.
Session 1 What is web page? The basic unit of information displayed over the net is a web page . What is web site ? It is a collection of web pages . URI : uniform resources Identifier Home page Communication b/w server and a browsers Feature
3 kind of network LAN : local area network WAN : wide area network MAN: metropolitan area network
Types of webpage Static web pages Dynamic web pages
Structure of Html <!DOCTYPE html> <html> <head> <title>my html</title> </head> <body> Welcome to html </body> </html>
Attributes & Tags < body bgcolor =“red”> bgcolor=attributes , red= values Tags helps to add picture , movies, heading etc Ex : <h1> ……………….. </h1>
Basic tags elements in html Paragraph: <p> </p> break: <br> or <br/> Heading : H1,H2,H3,H4,H5,H6 HR: <hr> <hr color=“red” width=“75%” size=“4”> Pre: <pre ></pre> (space) Center:<center> </center>
Basic text elements in html Superscript:<sup> </sup> Subscript :<sub> </sub> Bold :<b> </b> I :<i> </i> u :<u> </u> Big :<big> </big> Small :<small> </small> Strike :<strike > </strike >
Basic text elements in html Delete :<del> </del> Insert :<ins> </ins> Strong :< Strong > < /Strong > Color text : 2 ways : <font size color face> </font> or <p style=“color: green;font-size:8;”> </p> (inline css)
Basic text elements in html Marquee :<marquee> </marquee> Acronym :< Acronym title=“meaning”></ Acronym title> Cite (meaning):Reference <cite>google.com</cite> Divided :<div> </div> Marquee bgcolor=“red” < Marquee> <span style=“background- color: red”>html</span></marquee>
Basic text elements in html <marquee direction =“right” scrollamount =“30”> <marquee behavior="alternate"> Image <img src=“moon.jpg”/> <img src="sunset.gif" /> < img src=“moon.jpg” width=“50” height=“200” alt=“it is a moon”/> Alter : alt=“united nation org”
HTML Quotation Tag Description < abbr > Defines an abbreviation or acronym <address> Defines contact information for the author/owner of a document < bdo > Defines the text direction < blockquote > Defines a section that is quoted from another source <cite> Defines the title of a work <q> Defines a short inline quotation <mark> For highlight
HTML Computer Code Elements Tag Description <code> Defines programming code < kbd > Defines keyboard input < samp > Defines computer output < var > Defines a variable <pre> Defines preformatted text
List 3 types : Unordered list Ordered list Definition list Unordered list : type="square" type="disc" type="circle" <h4 align="center">Shopping List</h4> <ul > <li>Milk</li> <li>chocolate</li> <li>Cereal</li> <li>Bread</li> </ul>
list Ordered list <h4 align="center">Goals</h4> <ol> <li>Find a Job</li> <li>Get Money</li> <li>Move Out</li> </ol> Lower-Case Letters, Upper-Case Letters , Lower-Case Numerals , Upper-Case Numerals, Roman-letters
Definition list <dl> < dt ><b> Fromage </b></ dt > < dd >French word for cheese.</ dd > < dt ><b>Voiture</b></ dt > < dd >French word for car.</ dd > </dl> Fromage French word for cheese. Voiture French word for car. <dl> - defines the start of the list < dt > - definition term < dd > - defining definition
Cell Padding and Spacing Cell Padding and Spacing With the cell padding and cell spacing attributes you will be able to adjust the white space on your tables. Spacing defines the space between two cells , while padding represents the distance between cell borders and the content of a cell. Color has been added to the table to emphasize these attributes.
HTML Comment Tags Comment tags <!-- and --> are used to insert comments in HTML . Ex: <!-- This is a comment --> <p>This is a paragraph.</p> <!-- Remember to add more information here -->
Form: HTML web forms are a composition of buttons, checkboxes, and text input fields embedded inside of HTML documents with one goal in mind: to capture user input. By doing things such as providing fields for user data such as names, phone number, and email addresses, web forms give users the opportunity to interact directly with a webpage. <html> <body> <form><caption><center>APPLICATION FORM</center></caption> First Name:</td><td><input type="text" maxlength="15" size="30" value="john"> Last Name:</td><td><input type="text" maxlength="15" size="30" value="Ford">
Frame( With frames, several Web pages can be displayed in the same browser window. <html> <frameset cols="25%,50%,25%"> <frame src ="a.html" /> <frame src ="b.html" /> <frame src =“c.html" /> </frameset> </html>
Iframe: An iframe is used to display a web page within a web page. <iframe src="oline.html" width="350" height="150" scrolling="auto" frameborder ="1"> </iframe> <The End>