Abhinav
Abhinav
ON
FUNDAMENTAL OF PYTHON FOR MACHINE LEARNING,
DATA SCIENCE & WEB DEVELOPMENT
A report submitted in partial fulfillment of the requirement if Internship for
Bachelor of Technology
In
ELECTRONICS AND COMMUNTICATION ENGINEERING
by
ABHINAV RAJ
Reg no - 22104132044
DEPARTMENT OF
ELECTRONICS & COMMUNICATION ENGINEERING
SAHARSA COLLEGE OF ENGINEERING
SAHARSA, 852201, BIHAR
CERTIFICATE
DECLARATION
ACKNOWLEDGEMENTS
CONTENT
UNIT – 01
INTRODUCTION OF HTML
Logo of HTML
<html> element.
COMMENTS IN HTML
Comments in HTML are used to mark text which should not be
parsed. They can help document the source code.
Case sensitivity
HTML is a case insensitive language <H1> and <h1> tags are the
same.
We can add elements inside the body tag to define the page layout.
HTML ELEMENT
Everything from starting to the ending tag.
<content>
Ex –
OUTPUT
PARAGRAPH TAG
Paragraph tags are used to add paragraph to an HTML page.
Ex –
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph. </p>
<p>This is another paragraph. </p>
OUTPUT
This is a paragraph.
This is another paragraph.
THE ANCHOR TAG
The anchor tag is used to add links to an existing content inside an
HTML page.
Ex –
EX –