1 HTML Intro
1 HTML Intro
CSE326:
INTERNET PROGRAMMING
LABORATORY
2
Exam Category: X6
3
COURSE OUTCOMES
• CO1 :: Recognize the components, tools, sturucture and tags
of HTML, CSS and Javascript.
4
COURSE OUTCOMES
• CO4 :: Analyze output of web page after application of
different components of HTML, CSS and Javascript as per
required in the website development.
5
Unit I
• Exposure To HTML : HTML document structure,
Working with HTML basic elements like title, head,
body, Working with Root and Metadata, Script and
NonScript, Horizontal Rules and line breaks and
paragraph, working with citation, quotation, definitions
and comments, Types of Tags in HTML
6
Unit II
• Working with Text, Links, Images , URLS,
Multimedia and Interactive in HTML : Formatting
text with HTML physical style elements, Formatting
text with HTML logical style elements, Creating links
with anchor tag, Multimedia- audio,video tags and
attributes like controls, autoplay and loop, Working
with images in a web page
7
Unit III
• Cascading Style Sheets : CSS selectors like type, id,
class, Introduction To CSS and types of CSS, CSS
properties-text controlling and text formatting, CSS
Box Model- Padding, Margin, Border, Div and Span
Tag in CSS, Working with background Images
8
Unit IV
• Working with Tables : Working With Tables-Colspan and
Rowspan, applying css on tables, creating hoverable tables
11
Text Books
• HTML 5 COVERS CSS3, JAVASCRIPT,
XML, XHTML, AJAX
– Author: KOGENT LEARNING
– Publisher Name: DREAMTECH PRESS
12
References
• WEB ENABLED COMMERCIAL APPLICATION
DEVELOPMENT USING HTML, DHTML,
JAVASCRIPT, DHTML AND PHP
– Author: IVAN BAYROSS
– Publisher Name: BPB PUBLICATIONS
13
References
• BEGINNING HTML, XHTML, CSS AND
JAVASCRIPT
– Author: JON DUCKETT
– Publisher Name: WILEY
14
Introduction to
HTML
15
Definitions
18
Choosing Text Editor
There are many different programs that
you can use to create web documents.
20
NotePad/ NotePad++
NotePad is the standard text editor that
comes with the microsoft windows
operating system.
22
Visual Studio Code
23
Creating a Basic Starting
Document
<HTML>
<HEAD>
<TITLE>University</TITLE>
</HEAD>
<BODY>
This is what is displayed.
</BODY>
</HTML>
24
Creating a Basic Starting
Document
The HEAD of your document point to above window
part.
25
Setting Document Properties
26
Why CSS?
27
CSS Definitions
❖Cascading Style Sheets (CSS) are a stylesheet language used to describe the
presentation of a document written in HTML or XML (including XML dialects like
SVG or XHTML).
28
29