UrbanPro
true
Shivani S. HTML trainer in Pimpri-Chinchwad

Shivani S.

IT Professional Trainer , Lecturer

Punawale, Pimpri-Chinchwad, India - 411033.

1 Student

Book a Demo
Referral Discount: Get ₹ 250 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Shivani S.

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

Hi, I’m Shivani, a dedicated Programming Languages Teacher. I am pursuing ME in Computer Science at SPPU.I offer online tuition and personalized home tutoring, ensuring each student receives individual attention and tailored lessons to meet their learning needs.
My Key Skills:
Proficient in teaching beginners and advanced students in Python, JavaScript, Java, C++, HTML/CSS, and more.
Hands-on approach with real-world projects and coding exercises.
Expertise in web development, object-oriented programming, and data structures & algorithms.
Focused on fostering logical thinking, problem-solving, and coding best practices.

Languages Spoken

Marathi Mother Tongue (Native)

Hindi Proficient

English Basic

Education

Savitribai Phule Pune Univercity Pursuing

Master of Engineering - Master of Technology (M.E./M.Tech.)

SPPU, Pune 2023

Bachelor of Engineering (B.E.)

Address

JQQ2+X95, Punawale

Punawale, Pimpri-Chinchwad, India - 411033

Verified Info

Phone Verified

Email Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

HTML Training

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in HTML Training

1

Reviews

No Reviews yet!

FAQs

1. Which classes do you teach?

I teach HTML Class.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for 1 year.

Answers by Shivani S. (5)

Answered 18 hrs ago Learn IT Courses/HTML

Creating a web page using HTML is simple! Here’s a basic example: Steps to Create a Web Page: Open a text editor (e.g., Notepad, VS Code, Sublime Text). Write HTML code (see example below). Save the file with an extension.html (e.g.,index.html. Open the file in a browser (double-click or... ...more

Creating a web page using HTML is simple! Here’s a basic example:

Steps to Create a Web Page:

  1. Open a text editor (e.g., Notepad, VS Code, Sublime Text).
  2. Write HTML code (see example below).
  3. Save the file with an extension.html (e.g.,index.html.
  4. Open the file in a browser (double-click or right-click "Open with" → choose a browser).
  5. Example:

             <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to My Web Page</h1>
This is a simple webpage created using HTML.</p>
<a href="https://www.google.com">Click here to visit Google</a>
</body>
</html>

Answers 2 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

HTML5 introduced several key improvements over its predecessors (HTML4, XHTML, etc.). Here are the major differences: 1. New Semantic Elements HTML5 introduced semantic elements to improve readability and structure: <header>, <footer>, <article>, <section>, <nav>, <aside> These... ...more

HTML5 introduced several key improvements over its predecessors (HTML4, XHTML, etc.). Here are the major differences:

1. New Semantic Elements

HTML5 introduced semantic elements to improve readability and structure:

  • <header>, <footer>, <article>, <section>, <nav>, <aside>
  • These replace generic <div> and <span> used in pre-HTML5.

2. Multimedia Support

  • HTML5: Native support for <audio> and <video> tags (no need for third-party plugins like Flash).
  • Pre-HTML5: Multimedia required Flash, Silverlight, or Java Applets.

3. Form Enhancements

  • New input types: email, date, url, number, range, color.
  • New attributes: placeholder, required, autofocus, pattern.
  • Native validation (e.g., required fields, email format) without JavaScript.

4. Better JavaScript API & Browser Support

  • Local storage: localStorage and sessionStorage for persistent data storage.
  • Geolocation API to get user location.
  • WebSockets for real-time communication.
  • Canvas API (<canvas>) for drawing graphics.

5. Improved Accessibility and Mobile-Friendliness

  • Responsive design support with <meta name="viewport">.
  • SVG & Canvas for scalable graphics.
  • Removal of outdated elements like <font>, <center>, <frame>, <big>.

6. Doctype Simplification

  • HTML5: <!DOCTYPE html> (simple and universal).
  • Pre-HTML5: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> (complex and required for different versions).

7. Compatibility & Error Handling

  • HTML5: More forgiving of syntax errors (error handling is improved).
  • Pre-HTML5: Stricter parsing, especially in XHTML.

8. Deprecated Elements

HTML5 removed several outdated elements:

  • <applet>, <acronym>, <big>, <dir>, <font>, <strike>, <tt>, <frame>.
Answers 2 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

. Choose a Backend Technology HTML alone cannot connect directly to a database. You need a backend server to process database interactions. Common backend technologies include: Node.js with Express (JavaScript) Python with Flask/Django PHP Java with Spring Boot Ruby on Rails ...more

. Choose a Backend Technology

HTML alone cannot connect directly to a database. You need a backend server to process database interactions. Common backend technologies include:

  • Node.js with Express (JavaScript)
  • Python with Flask/Django
  • PHP
  • Java with Spring Boot
  • Ruby on Rails
Answers 4 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

Adding your own HTML files to WordPress can be done in multiple ways, depending on how you want to integrate them. Here are the common methods: 1. Uploading HTML Files via the WordPress Dashboard If you simply want to display an HTML file on your site, follow these steps: Compress the HTML File Create... ...more

Adding your own HTML files to WordPress can be done in multiple ways, depending on how you want to integrate them. Here are the common methods:

1. Uploading HTML Files via the WordPress Dashboard

If you simply want to display an HTML file on your site, follow these steps:

  1. Compress the HTML File

    • Create a ZIP file containing your HTML file and any CSS, JS, or images it needs.
  2. Upload the ZIP File

    • Go to Media > Add New in your WordPress dashboard.
    • Upload the ZIP file.
  3. Extract and Access the File

    • If your hosting allows it, extract the ZIP file via cPanel or FTP.
    • You can now access your file at.yoursite.com/yourfile.html
Answers 3 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

you can use the <figure> and <figcaption> elements : Just like that below example: <figure> <img src="your-image.jpg" alt="Image" width="300"> <figcaption>Your Text Here</figcaption></figure> ...more

you can use the <figure> and <figcaption> elements : Just like that below example:

<figure>
<img src="your-image.jpg" alt="Image" width="300">
<figcaption>Your Text Here</figcaption>
</figure>

Answers 2 Comments
Dislike Bookmark

Teaches

HTML Training

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in HTML Training

1

No Reviews yet!

Answers by Shivani S. (5)

Answered 18 hrs ago Learn IT Courses/HTML

Creating a web page using HTML is simple! Here’s a basic example: Steps to Create a Web Page: Open a text editor (e.g., Notepad, VS Code, Sublime Text). Write HTML code (see example below). Save the file with an extension.html (e.g.,index.html. Open the file in a browser (double-click or... ...more

Creating a web page using HTML is simple! Here’s a basic example:

Steps to Create a Web Page:

  1. Open a text editor (e.g., Notepad, VS Code, Sublime Text).
  2. Write HTML code (see example below).
  3. Save the file with an extension.html (e.g.,index.html.
  4. Open the file in a browser (double-click or right-click "Open with" → choose a browser).
  5. Example:

             <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to My Web Page</h1>
This is a simple webpage created using HTML.</p>
<a href="https://www.google.com">Click here to visit Google</a>
</body>
</html>

Answers 2 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

HTML5 introduced several key improvements over its predecessors (HTML4, XHTML, etc.). Here are the major differences: 1. New Semantic Elements HTML5 introduced semantic elements to improve readability and structure: <header>, <footer>, <article>, <section>, <nav>, <aside> These... ...more

HTML5 introduced several key improvements over its predecessors (HTML4, XHTML, etc.). Here are the major differences:

1. New Semantic Elements

HTML5 introduced semantic elements to improve readability and structure:

  • <header>, <footer>, <article>, <section>, <nav>, <aside>
  • These replace generic <div> and <span> used in pre-HTML5.

2. Multimedia Support

  • HTML5: Native support for <audio> and <video> tags (no need for third-party plugins like Flash).
  • Pre-HTML5: Multimedia required Flash, Silverlight, or Java Applets.

3. Form Enhancements

  • New input types: email, date, url, number, range, color.
  • New attributes: placeholder, required, autofocus, pattern.
  • Native validation (e.g., required fields, email format) without JavaScript.

4. Better JavaScript API & Browser Support

  • Local storage: localStorage and sessionStorage for persistent data storage.
  • Geolocation API to get user location.
  • WebSockets for real-time communication.
  • Canvas API (<canvas>) for drawing graphics.

5. Improved Accessibility and Mobile-Friendliness

  • Responsive design support with <meta name="viewport">.
  • SVG & Canvas for scalable graphics.
  • Removal of outdated elements like <font>, <center>, <frame>, <big>.

6. Doctype Simplification

  • HTML5: <!DOCTYPE html> (simple and universal).
  • Pre-HTML5: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> (complex and required for different versions).

7. Compatibility & Error Handling

  • HTML5: More forgiving of syntax errors (error handling is improved).
  • Pre-HTML5: Stricter parsing, especially in XHTML.

8. Deprecated Elements

HTML5 removed several outdated elements:

  • <applet>, <acronym>, <big>, <dir>, <font>, <strike>, <tt>, <frame>.
Answers 2 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

. Choose a Backend Technology HTML alone cannot connect directly to a database. You need a backend server to process database interactions. Common backend technologies include: Node.js with Express (JavaScript) Python with Flask/Django PHP Java with Spring Boot Ruby on Rails ...more

. Choose a Backend Technology

HTML alone cannot connect directly to a database. You need a backend server to process database interactions. Common backend technologies include:

  • Node.js with Express (JavaScript)
  • Python with Flask/Django
  • PHP
  • Java with Spring Boot
  • Ruby on Rails
Answers 4 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

Adding your own HTML files to WordPress can be done in multiple ways, depending on how you want to integrate them. Here are the common methods: 1. Uploading HTML Files via the WordPress Dashboard If you simply want to display an HTML file on your site, follow these steps: Compress the HTML File Create... ...more

Adding your own HTML files to WordPress can be done in multiple ways, depending on how you want to integrate them. Here are the common methods:

1. Uploading HTML Files via the WordPress Dashboard

If you simply want to display an HTML file on your site, follow these steps:

  1. Compress the HTML File

    • Create a ZIP file containing your HTML file and any CSS, JS, or images it needs.
  2. Upload the ZIP File

    • Go to Media > Add New in your WordPress dashboard.
    • Upload the ZIP file.
  3. Extract and Access the File

    • If your hosting allows it, extract the ZIP file via cPanel or FTP.
    • You can now access your file at.yoursite.com/yourfile.html
Answers 3 Comments
Dislike Bookmark

Answered 19 hrs ago Learn IT Courses/HTML

you can use the <figure> and <figcaption> elements : Just like that below example: <figure> <img src="your-image.jpg" alt="Image" width="300"> <figcaption>Your Text Here</figcaption></figure> ...more

you can use the <figure> and <figcaption> elements : Just like that below example:

<figure>
<img src="your-image.jpg" alt="Image" width="300">
<figcaption>Your Text Here</figcaption>
</figure>

Answers 2 Comments
Dislike Bookmark

Shivani S. describes herself as IT Professional Trainer , Lecturer. She conducts classes in HTML. Shivani is located in Punawale, Pimpri-Chinchwad. Shivani takes Online Classes- via online medium. She has 1 years of teaching experience . Shivani is pursuing Master of Engineering - Master of Technology (M.E./M.Tech.) from Savitribai Phule Pune Univercity. Shivani has completed Bachelor of Engineering (B.E.) from SPPU,Pune in 2023. She is well versed in Marathi, Hindi and English.

X

Share this Profile

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more