You are on page 1of 14

SETH JAI PARKASH MUKAND LAL INSTITUTE OF TECHNOLOGY & ENGINEERING

TRAINING PRESENTATION
WEB-DEVELOPMENT COURSE

SUBMITTED BY:-
SHIYA VERMA
B.TECH(CSE 3rd year)
Web-Development
COURSE CONTENTS

⇢ Introduction to web development


⇢ HTML
⇢ CSS
⇢ PHP
Introduction to Web Development
What is WEB

Web development is work involved in developing Website for


Internet (World Wide Web).

Web Pages are written in HTML(Hyper Text Markup Language).

Static web pages are retrieved from web server's file without any modification whereas dynamic
ones are created on server, reading data from database before being sent to user's browser.
What is HTML Structure of Web Page
Hypertext Markup Language

⇢ Defines the meaning and


structure of web content.

Hypertext:- Links that connects the web


pages to one another.
Markup:- <> are used in Html, so it is
called markup language.
HTML Tags
☛ Html tags defines how the web browser display and format the content. Some are HTML
meta tags(DOCTYPE,<title> etc.), <img> etc.

<opening tag> content </closing tag>


HTML Comments

Comments can be used to


hide content.

HTML comments are not


displayed in the browser,
but they can help document
your HTML source code.
CASCADING STYLE Using CSS
SHEET(CSS) CSS can be added to HTML in
three ways:

⇢What is ⇢ Inline - by using style


attribute in HTML element.

CSS?
⇢ Internal - by using <style>
element in <head> section.
⇢ External - by using <link>
It is used to format the layout of a element to link to an external
webpage. CSS.
CSS

INLINE CSS INTERNAL CSS EXTERNAL CSS


CSS Selectors

CSS selectors are used to "find" (or select) the HTML elements
you want to style.

Class Selector
Syntax: .classname
Id Selector
Syntax: #idname
PHP

Hypertext Preprocessor (PHP) is a programming language that allows web


developers to create dynamic content that interacts with databases.

What is PHP What can PHP do


⇢ server side scripting language ⇢ Generate dynamic page content.

⇢ PHP files have extension .php. ⇢ Add, delete, modify data in database.
⇢ PHP script is executed with ⇢ Send and recieve cookies.
HTML.
⇢ Can open,read,write and delete files
on server.
Basic PHP Syntax
Variables
"Containers" for storing Information

Creating variables:
Start with $ sign, followed by name of
variable.
Three variable scopes:
⇢ Global
⇢ Local
⇢ Static
Echo() and print()
echo() print()
⇢ used to display the output. ⇢ used as an alternative to echo at
many times to display the output.
⇢ does not return any value.
⇢ always returns an integer value,
which is 1.
THANK YOU

You might also like