Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

fitness report... its about an advertisement of a gym, Assignments of Effective Business Report Writing

this is a fitness report.... I made it for my college seminar report. i made a website of a gym.

Typology: Assignments

2022/2023

Uploaded on 11/23/2023

gharshana-talele
gharshana-talele 🇮🇳

2 documents

1 / 19

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
1
A
Report On
Fitness Website
Submitted In Partial Fulfillment of the Requirement
For The Award of Second Year of B. Tech
In Computer science and engineering
Dr. Babasaheb Ambedkar Technological University, Lonere.
Submitted By
Miss. Gharshana Pravin Talele
PRN Number: 2151701242042
Under The Guidance of
Prof.R.P.Chaudhari
DEPARTMENT OF BASIC SCIENCES & HUMANITIES
HSM’S SHRI SANT GADGE BABA
COLLEGE OF ENGINEERING AND TECHNOLOGY, BHUSAWAL
425203
DR. BABASAHEB AMBEDKAR TECHNOLOGICAL UNIVERSITY,
LONERE 2022-2023
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13

Partial preview of the text

Download fitness report... its about an advertisement of a gym and more Assignments Effective Business Report Writing in PDF only on Docsity!

A

Report On

“Fitness Website ”

Submitted In Partial Fulfillment of the Requirement

For The Award of Second Year of B. Tech

In Computer science and engineering

Dr. Babasaheb Ambedkar Technological University, Lonere.

Submitted By

Miss. Gharshana Pravin Talele PRN Number: 2151701242042

Under The Guidance of

Prof.R.P.Chaudhari

DEPARTMENT OF BASIC SCIENCES & HUMANITIES

HSM’S SHRI SANT GADGE BABA

COLLEGE OF ENGINEERING AND TECHNOLOGY, BHUSAWAL –

DR. BABASAHEB AMBEDKAR TECHNOLOGICAL UNIVERSITY,

LONERE 2022 - 2023

Shri Sant Gadge Baba

College of Engineering and Technology,

Bhusawal 425 203

Certificate

This is to certify that Miss. Gharshana Pravin Talele PRN Number:

2151701242042 has successfully completed her Seminar on “Fitness Website” for the

partial fulfillment of the award of Second Year B. Tech. in computer science and

engineering as prescribed by the Dr. Babasaheb Ambedkar Technological University,

Lonere during academic year 2022-2023.

Prof.R.P.Chaudahri

(Guide)

Dr. D.D. Patil

(H.O.D)

Dr. R. B. Barjibhe

(Principal)

A C K N O W L E D G E M E N T

I feel great pleasure in submitting this website report on “ Fitness ”. I would wish

to thank our Principal Dr. R. B. Barjibhe , and H.O.D, Dr. D.D.Patil for opening the

doors of knowledge towards the realization of this Seminar.

I wish to express true sense of gratitude towards my teacher and guide, Prof.

R.P.Chaudhari who at every discrete step in study of this Seminar contributed his/her

valuable guidance and help me to solve every problem that arose.

Most likely I would like to express my sincere gratitude towards my family and

friends for always being there when I needed them the most.

With all respect and gratitude, I would like to thank all authors listed and not

listed in references whose concepts are studied and used by me whenever required. I

owe my all success to them.

Miss. Gharshana Pravin Talele

PRN Number: 2151701242042

S.Y. B. Tech- 2022 - 2023, SSGBCOET, BSL

C O N T E N T S

Chapter No. Title

1. Introduction

It is important to learn HTML and CSS before learning JavaScript, since HTML and CSS are the core technologies for building web pages and applications. HTML defines the structure of your content, CSS determines the style and layout, and JavaScript makes the content interactive; therefore, it makes the most sense to learn them in that order. JavaScript incorporates valuable skills such as object-oriented, functional, and imperative styles of programming. Beginner developers, in turn, can apply these skills to any new language they want to learn, like Python and C. As a web designer, you’ll work closely with clients or co-workers to design websites that are functional and visually appealing. You’ll be working not just behindthe-scenes coding in HTML/CSS/JavaScript, but also with the colors, shapes, and fonts that make the website pop for the client. My website contain a navigation bar which leads to three webpages home. Course and Feedback. The home pages consists of the introduction and informs what this website is about various tags and properties of HTML & CSS are used to create the logo and animation of the texts. The courses pages consists of the Python Programming Course. Basic topic of Python Programming are explained such as comments for loop, if…. else statement function etc. on the left side website in the course page vertical navigation bar is provided where these tags are mentioned.by clicking on them the desired topic display directly on the screen without scrolling through all the topics to view the descript .The feedback pages consists of feedback from. This webpages is built using HTML, CSS.

2. Overview of HTML, CSS, Bootstrap

HTML:

I am going to take some time explaining about the semantic elements in HTML. To my easier understanding, I divide HTML tags into two categories say, Semantic elements and Non-semantic elements (this might not necessarily be the truth).A Non-Semantic element is something that makes sense only to the user. Traditionally, developers have implemented non-semantic elements with a class attribute to define the structure and express the meaning of content. It tells nothing about its content. The element has no special meaning at all. Example,

and these tags only cater to the presentation of the data. Tags like and are not semantic, because they define only how the text should look (bold or italic) and do not provide any additional meaning to the markup. CSS: CSS is used to define styles for your web pages, including the design, layout, and variations in display for different devices and screen sizes. Bootstrap: Bootstrap is a free and open-source CSS framework directed at responsive, mobile-first front-end web development. It contains CSS- and JavaScript-based design templates for typography, forms, buttons, navigation, and other interface components_._

My first paragraph.

Start tag Element content End tag

My First Heading

My First Paragraph


None None **3.4 Let's look at the important bits of code here: :** Specifies that we're using HTML5 in this code. Before the introduction of HTML5, you had to explicitly state which version of HTML you were coding in with the tag. For example, HTML4.0, 3.2, and so on. But now we no longer need it. When “html” is written in the code, the browser automatically assumes that you are coding in HTML5. **:** the root, or top-level element of every HTML document. Every other element **:** one of the most crucial parts of the HTML document. Web crawlers look inside the head tags to get important information about the page. It contains info such as the page title, stylesheets, meta information for SEO, and lots more. **:** this is an empty element that conveys meta-information about the page. Such information may include the author, what type of encoding it's using (almost always UTF-8), responsiveness, compatibility, and a lot more. Web crawlers always look at the meta tag to get information about the web page, which will play a crucial role in SEO. **:** this defines the title of the web page. It is always shown in the browser tab. **:** all the content of the HTML document is located inside the body tag. There tag on the whole page

4.CSS

Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML or XML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. Wikipedia Filename extension: css Container for: Style rules for HTML elements (tags) Developed by: World Wide Web Consortium (W3C) Initial release : 17 December 1996; 26 years ago Latest release: CSS 2.1: Level 2 Revision 1; 12 April 2016; 7 years ago 4.1 Types of CSS :

  • Inline CSS
  • Internal or Embedded CSS
  • External CSS Inline CSS: Inline CSS contains the CSS property in the body section attached to the element is known as inline CSS. This kind of style is specified within an HTML tag using the style attribute. Internal or Embedded CSS: This can be used when a single HTML document must be styled uniquely. The CSS rule set should be within the HTML file in the head section i.e. the CSS is embedded within the rather than by laboriously going through the document and changing the color for each individual h element. The styles can also be placed in an external CSS file, as described below, and loaded using syntax similar to: rel=”stylesheet” type=”text/css”> This further decouples the styling from the HTML document and makes it possible to restyle multiple documents by simply editing a shared external CSS file.

    4.3 Thus the selectors of the following rule result in the indicated specificity:

    • Title Sheet Page No
    • Certificate
    • Declaration
    • Acknowledgement
    • Index
    • Abstract
    • 1 Introduction
    • 2 Overview of HTML, CSS, Bootstrap
    • 3 HTML
      • 3.1 What is HTML?
      • 3.2 The Timeline of HTML
      • 3.3 What is HTML Element?
      • 3.4 Important bits of code.
    • 4 CSS
      • 4.1 Types of CSS
      • 4.2 Uses of CSS
      • 4.3 Selectors rule
    • 5 BOOTSTRAP
      • 5.1 What is Bootstrap?
    • 6 Website Screenshots
      • conclusion
      • References
    • h1{color:white;} 0,0,0, selectors specify
    • p em{color:green;} 0,0,0,
    • .grape{color:red;} 0,0,1,
    • p.bright{color:blue;} 0,0,1,
    • p.bright em.dark{color:yellow;} 0,0,2,
    • #id4218{color:brown;} 0,1,0,
    • style=” ” 1,0,0,

    6. WEBSITE SCRRESHORTS

    6 .1 Home page of Website 6.2 welcome to fitness website

    6.3Equipments website 6.4 Our Team

    REFERENCES

    • https://www.w3schools.com/jsrEF/default.asp.
    • https://jsuites.net/v4/javascript-tags •https://blog.hubspot.com/marketing/web-design-html cssjavascript#:~:text=HTML%2C%20CSS%2C%20%26%20JavaScript%3A,the%20behav ior%20of%20different%20elements. •https://complete-concrete-concise.com/tutorials/webdev/front-end-basics/html-basic conclusion/