web programing report
web programing report
2022-2023
A Internship Report on
BACHELOR OF ENGINEERING
In
Submitted By
ANJALI N
[1JB22CS400]
Mrs. Vinutha K
Assistant Professor,
Dept. of CSE,SJBIT
CERTIFICATE
Certified that the Internship report entitled “Inter/Intra Institutional Internship(21INT49)” carried out
by ANJALI N [1JB22CS400] bonafide student of SJB Institute of Technology in partial fulfilment
for the award of “BACHELOR OF ENGINEERING” in 3rd semester as prescribed by
VISVESVARAYA TECHNOLOGICAL UNIVERSITY, BELAGAVI during the academic year
2022-23. It is certified that all corrections/suggestions indicated for internal assessment have been
incorporated in the report deposited in the departmental library. This report has been approved as it
satisfies the academic requirements in respect of the Internship prescribed for the said degree.
I would like to express our profound grateful to His Divine Soul Jagadguru Padmabhushan Sri Sri
Sri Dr. Balagangadharanatha Mahaswamiji and His Holiness Jagadguru Sri Sri Sri Dr.
Nirmalanandanatha Swamiji for providing me an opportunity to be a part of this esteemed
institution.
I would also like to express our profound thanks to Revered Sri Sri Dr. Prakashnath Swamiji,
Managing Director, SJB Institute of Technology, for his continuous support in providing amenities
to carry out this Internship in this admired institution.
I express our gratitude to Dr. K V Mahendra Prashanth, Principal, SJB Institute of Technology, for
providing me excellent facilities and academic ambience, which helped me in satisfactory completion
of Internship work.
I extend our sincere thanks to Dr. Babu N V, Academic Dean, SJB Institute of Technology for
providing us constant support throughout the period of my internship work.
I extend our sincere thanks to Dr. Krishna A N, Professor & Head, Dept.of CSE for providing us
invaluable support throughout the period of my Internship work.
I wish to express our heartfelt gratitude to my guide, Mrs. Vinutha K, for her valuable guidance,
suggestions and cheerful encouragement during the Internship work.
I express my truthful thanks to Dr. Ajay B N, Internship coordinator, Dept.of CSE for his valuable
support.
Finally, I take this opportunity to extend my earnest gratitude and respect to our parents, teaching
& technical staff of the department, the library staff and all my friends, who have directly or indirectly
supported me during the period of Internship work.
Regards
ANJALI N
[1JB22CS400]
ABSTRACT
CHAPTER 1: INTRODUCTION 1
1.1 Ethnotech 1
CHAPTER 1
INTRODUCTION
1.1 Ethnotech
The Internship was conducted by Ethnotech Academic Solutions Pvt Ltd Ethnotech is
specialized in establishing the state of art cutting edge latest technology labs at
educational institutions They felicitate the collaboration between educational
institutions and global technology corporates. Ethnotech Trains and certifies students
and faculties in latest technologies as well as connecting the certified students to
corporates for placements through its Learning Management System (LMS) Portal.
Certification from Ansys, Microsoft, CISCO, IBM, Oracle etc., which are accepted
globally. We learnt the basics of web designing with HTML and CSS, in a span of 9
days. We made our own project at the end using the skills that we had acquired through
the program.
ACTIVITY 1
WEB PROGRAMMING
CHAPTER 2
WEB PROGRAMMING
2.1 INTRODUCTION
Web development is the work involved in developing a website for the Internet (World
Wide Web) or an intranet (a private network).Web development can range from
developing a simple single static page of plain text to complex web applications,
electronic businesses, and social network services.
A more comprehensive list of tasks to which Web development commonly refers, may
include Web engineering, Web design, Web content development, client liaison, client-
side/server-side scripting, Web server and network security configuration, and e-
commerce development.
2.2 HTML
HTML stands for Hyper Text Markup Language. It is used to design web pages using a
markup language. HTML is the combination of Hypertext and Markup language. Hypertext
defines the link between web pages. A markup language is used to define the text document
within the tag which defines the structure of web pages. This language is used to annotate
(make notes for the computer) text so that a machine can understand it and manipulate text
accordingly.
HTML Tags
HTML markup consists of several key components, including those called tags (and their attributes),
character-based data types, character references and entity references.HTML tags mostly come in pairs
like <h1> and </h1> although some represent empty elements and so are unpaired, for example <img>.
HTML Elements
HTML documents imply a structure of nested HTML elements. These are indicated in the
document by HTML tags, enclosed in angle brackets thus: <p>
In the simple, general case, the extent of an element is indicated by a pair of tags:a "start
tag" <p> and "end tag" </p>. The text content of the element, if any, is placed between
these tags.
HTML Attributes
• HTML attributes are special words which provide additional information about the
elements or attributes are the modifier of the HTML element.
• Each element or tag can have attributes, which defines the behavior of that element.
• Attributes should always be applied with start tag.
• The Attribute should always be applied with its name and value pair.
• The Attributes name and values are case sensitive, and it is recommended by W3Cthat
it should be written in lowercase only.
HTML Boilerplate
HTML TAGS
• <h1>-Heading tag
• <p>-Paragraph tag
• <ls>-list
• <b>-bold
• <u>-underline
• <i>-italic
• <li>-bullet point
• <a>-anchor tag
• <img> - image tag
• <video> - video tag
FORMS
<form> is a HTML element to collect input data containing interactive controls. It
provides facilities to input text, number, values, email, password, and control fields such
as checkboxes, radio buttons, submit buttons, etc., or in other words, form is a container
that contains input elements like text, email, number, radio buttons, checkboxes, submit
buttons, etc. Forms are generally used when you want to collect data from the user. For
example, a user wants to buy a bag online, so he/she must first enter their shipping address
in the address form and then add their payment details in the payment form to place an
order. Forms are created by placing input fields within paragraphs, preformatted text, lists
and tables. This gives considerable flexibility in designing the layout of forms.
• <input>: It is used to get input data from the form in various types such as text, password,
Syntax
<form>
</form>
TABLES
A table is a structured set of data made up of rows and columns (tabular data). A table
allows you to quickly and easily look up values that indicate some kind of connection
between different types of data, for example a person and their age, or a day of the week,
or the timetable for a local swimming pool.[1]
• <tr>-table rows
• <th>-table heading
• <td>-table data
EX:
<tr>
<td>CELL 1</td>
<td>CELL 2</td>
</tr>
<tr>
<td>CELL 3</td>
<td>CELL 4</td>
</tr>
OUTPUT
CELL 1 CELL 2
CELL 3 CELL 4
LISTS
2.3 CSS
Cascading Style Sheets (CSS) is a style sheet language used for describing the
presentation of a document written in a markup language such as HTML or XML
(including XML dialects such as SVG, MathML or XHTML). CSS is a cornerstone
technology of the World wide web, alongside HTML.
The major points of CSS are given below:
CSS stands for Cascading Style Sheet.
CSS is used to design HTML tags.
CSS is a widely used language on the web.
HTML, CSS and Java Script are used for web designing.
TYPES OF CSS
Inline CSS:
Internal CSS:
The internal style sheet is used to add a unique style for a single document. It is defined
in <head> section of the HTML page inside the <style> tag.
External CSS:
The external style sheet is generally used when you want to make changes on multiple
pages. It is ideal for this condition because it facilitates you to change the look of the
entire web site by changing just one file.It uses the <link> tag on every pages and the
<link> tag should be put inside the head section.
CSS SELECTOR
CSS selectors are used to select the content you want to style. Selectors are the part of CSS rule
set. CSS selectors select HTML elements according to its id, class, type, attribute etc.
I along with my teammates developed a movie ticket booking website ”ONLINE FIR”
We used HTML and CSS training that we had received during the training session to
create a website for reviewing and gathering information about a movie.
ACTIVITY 2
MS OFFICE
CHAPTER 3
MS TOOLS
3.1 INTRODUCTION
Microsoft Office, or simply Office, is the former name of a family of client software, server
software, and services developed by Microsoft
Microsoft Office is a suite of desktop productivity applications that is designed specifically to be
used for office or business use. It is a proprietary product of Microsoft Corporation and was first
released in 1990. Microsoft Office is available in 35 different languages and is supported by
Windows, Mac, and most Linux variants. It mainly consists of Word, Excel, PowerPoint, Access,
OneNote, Outlook, and Publisher applications.
3.2 MS WORD
3.3 MS POWERPOINT
3.4 MS EXCEL
4. Drag and Drop - feature will help you to reposition the data and text
5. Charts - features will help you in presenting a graphical representation of your data.
CONCLUSION
With the help of Ethnotech’s training session it made my web development concept clear. It helped
me develop my website and my portfolio. The training was helpful to help me develop websites in
future with the help of HTML and CSS.
MS Office training helped me perfect and increase my productivity with the use of MS suite. It
was informative and made me explore the software and unlock its true potential.
REFERENCES
[1] Liebowitz, Stan J. & Margolis, Stephen E. Winners, Losers & Microsoft: Competition and
Antitrust in High Technology Oakland: Independent Institute. ISBN 978-0-945999-80-5
[3] Find and replace text by using regular expressions (Advanced) - archived official support
website.
[4] Campbell, Jennifer (2017). Web Design: Introductory. Cengage Learning. p. 27.
[5]^ Northwood, Chris (2018-11-19). The Full Stack Developer: Your Essential Guide to the
Everyday Skills Expected of a Modern Full Stack Web Developer. Apress. ISBN 978-1- 4842-
4152- 3.
[6]^ "Longer Bio for Tim Berners-Lee". www.w3.org. Retrieved 2022-04-27. "What is Web
Development? - Definition from Techopedia". Techopedia.com. Retrieved 2018-12-07.
[7] https://www.w3schools.com/whatis/
[8] https://www.javatpoint.com/html-lists