0% found this document useful (0 votes)
2K views20 pages

Mini Project

This document introduces a website design and development project created by Virjanand, a second year B.Tech CSE student. The project agenda covers introduction, the about section, website design, development, technologies used, and software/tools including PHP, HTML, and CSS. PHP is introduced as a popular server-side language for web applications. HTML is described as the standard markup language for web pages, and CSS is introduced as cascading style sheets that describe how HTML elements are displayed.

Uploaded by

Virjanand
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views20 pages

Mini Project

This document introduces a website design and development project created by Virjanand, a second year B.Tech CSE student. The project agenda covers introduction, the about section, website design, development, technologies used, and software/tools including PHP, HTML, and CSS. PHP is introduced as a popular server-side language for web applications. HTML is described as the standard markup language for web pages, and CSS is introduced as cascading style sheets that describe how HTML elements are displayed.

Uploaded by

Virjanand
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 20

WELCOME

Create BY ::
VIRJANAND
B.Tech CSE – 2nd year
EMAIL:: [email protected]
Web DESIGNing & DEVELOPMENT
AGENDA
 Indroduction
 About project
 Website design
 Website development
 Technology build the project
 Software and tools
 PHP
 PHP Introduction
 Advantages of PHP
 Working of PHP
 HTML
 CSS
Introduction

This introduces students to basic web design using HTML


(Hypertext Markup Language) and CSS (Cascading Style Sheets).
Throughout the course students are introduced to planning and
designing effective web pages; implementing web pages by writing
HTML and CSS code; enhancing web pages with the use of page
layout techniques, text formatting, graphics, images, and
multimedia; and producing a functional, multi-page website.
About project

 Itis website design & development in PHP to


provide the some important and entertainment
contents to the user on world wide.
 Easy to access and very user friendly UI.
 It is well optimize.
 Used from PC browser as well as Mobile browser.
Website design

Web design encompasses many different


skills and disciplines in the production and
maintenance of websites.
Website development

Web development is a broad term for the


work involved in developing a web site for the
Internet.
Technology build the project

• PHP
• My • HTML
Da taba
SQL( • CSS
se)
Software and tools
PHP
Introduction of PHP

# PHP is a popular server-side language that is particularly good for web applications. Some of the largest
companies and organizations from around the world utilize PHP for their operations (some of them you probably use
every single day). A large amount of web sites and applications are powered by PHP; therefore an understanding of
the PHP language is mandatory to fully understand and accept the power behind popular frameworks (such as
Laravel, CodeIgniter or Symfony), and how popular websites and applications may be handling user's data.
PHP is an interpreted language. This means that you will write code statements (lines of code) and when a page is
requested, the PHP interpreter will load your PHP code, parse it and then execute it. This differs from other
languages, such as Java or C#, where the source code is compiled and then executed. This is useful for web
development in the fact that you do not have to re-compile your source code for trivial code changes and the changes
have immediate effect on all subsequent requests.
PHP is written as standard text files with the .php extension. PHP files are often saved within a folder in a web
server's public directory (or a web root directory). On most systems this will either be named publicor public_html.
For example, if a file was saved as index.php in a web root directory, a user could access it by
typing http://www.example.org or http://www.example.org/index.php.
<html>
<head>
<title>Hello World</title>
</head>
<body>
<?php echo "Hello, World!";?>
</body>
</html>

RESULT
Hello, World!
Advantages of PHP

 Only Web development


 Open Source
 There are good tools available
 Codes and solutions are easily available
 Fast installation and setup for development
 Lots and lots of knowledge and documentation
 Widely available
 Speed of development
Working of PHP

Client PC

File System

Webserver
My SQL
HTML

HTML is the standard markup language for creating Web pages.


• HTML stands for Hyper Text Markup Language
• HTML describes the structure of a Web page
• HTML consists of a series of elements
• HTML elements tell the browser how to display the content
• HTML elements are represented by tags
• HTML tags label pieces of content such as "heading", "paragraph",
"table", and so on
• Browsers do not display the HTML tags, but use them to render the
content of the page.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>


<p>My first paragraph.</p>

</body>
</html>

Result
My First Heading
My first paragraph.
HTML TAGS
CSS ( Cascading Style Sheets)

• CSS stands for Cascading Style Sheets
• CSS describes how HTML elements are to be displayed on
screen, paper, or in other media
• CSS saves a lot of work. It can control the layout of multiple web
pages all at once
• External stylesheets are stored in CSS files
FOR DOWNLOADING PRESENTATION.
Visit at :-
http://virjanand.epizy.com/
Support in Google chrome

You might also like