0% found this document useful (0 votes)
13 views9 pages

Mayuri

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

Mayuri

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

Implant Training Report Submmited By

1. Rutuja Sunil Patil


2. Rugveda Jayavant Hodage
3. Apeksha Santosh Patil
4. Mayuri Sudhir Mungurwade
5. Suhani Santosh Bhosale
6. Shweta Basavaraj Chougule
7. Parth Mahadev Bamane
Trainin Details :-

 Topic: Web Development


 Mode Of Training: Offline
 Platform:
 Start Date: 01-06-2024
 End Date: 15-07-2024
 Duration: 6 Weeks
 Number Of Hours: 40
 Marks Obtained:
What is Web Development

 It is the process of developing a web site which includes functionality


creation and usability testing website.

What is website and how does it works

 A website is a combination of different web pages together in a certain


fashion according to the designer’s will and organizational need served
through the same domain name server. Website is typically written in
HTML and hosted on single web server for its access through netwoks.
 Each website is provided with a unique uniform resource locator (URL) and
accessed through the hypertext transfer protocol( HTTP) responsible for
making communication possible between client machine and the server by
the application of different browser.
 The URLs of the web pages are responsible for orgnaizing website into a
hierarchy and the hyperlinks between them contrals how the perceives the
overall struture and flow of traffic between the different parths of website.
Web Page
 A web page is a document which os commonly written in HTML that is
viewed and translated by a web browser. A web page can be identified by
entering an URL.
 A web page may contain text, graphics , and hyperlinks to other web pages
and files.
 A web page can be of :
 Static type
 Dynamic type
 Static Web Page: Static web pages contain the same prebuilt content
each time and page is loaded. Standard HTML pages are static web pages.
They contain HTML code, which defines the struture and content of the
web page.
Each time an HTML , page is loaded, it looks the same.
 Dynamic Web Page: Other types of web pages, such as PHP, ASP and
JSP pages are dynamic web pages.These pages contain “server-side” code,
which allows the server to generate unique content each time the page is
loaded.

Web Development can be typically divided into two classes/


parts:
 Front-End Development
 Back-End development
 Front-End Development: It is the process of creating the layout of a
website. It’s the part that the users see and interact with. Its typically coded
using HTML/ CSS / javascript. There are also a few tools and framework
that can be used, like Bootstrap and Angular js.
 Back-End Development: It is the creation of the functional part of a
website. Its what makes the functional. Another part of the backend
development is interacting with the Database. Some of the most famous
backend language are PHP / Java/ Python. There are also a few frameworks
such as Ruby on Rails/Django/Node.js.
Technologies Learnt

Technologies I have learnt so far in this training are:


 HTML
 CSS
 Bootstrap
 SQL
HTML
 HTML is an acronym which stands for hyper text markup language which is
used for creating web pages and web applications.
 HTML Describes the structure of web pages.
 HTML Consists of a series of element.
 HTML Element tell the browser how to display the content.
 HTML elements label pieces of the content such as “ This is a
heading”. “This is a paragraph”, “this is a link”, etc.
 A simple HTML Document:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading<h1>
<p>My First paragraph</p>
</body>
</html>
CSS
 CSS stand for cascading style sheets.
 CSS describe hoe HTML element are to be display on screen, paper, or in
other media.
 CSS is used to define styles for our web pages, including the design, layout
and variation is display for the different devices and screen sizes.
 The word cascading means that a style applied to a parent element will also
apply to all children elements within the parent. So, if set the color of the
body text also get the same color ( Unless we specify something else.)
 CSS can be added to HTML documents in 3 ways:
 Inline: By using the style attribute inside HTML elements.
 Internal: By using a <style> element in the <head> section.
 External: By using a <link> element to the link external CSS file.
Bootstrap
 Bootstrap is a free front-end framework for faster and easier web
development.
 Bootstrap includes HTML and CSS based design templates for typography,
forms, button, tables, navigation, modals, image carousels and ,many
other, as well as optional javascript

You might also like