0
Can anybody teach me python and html
Please
11 Answers
+ 6
Teddy J Anyone can teach you but nobody gonna be 24x7 active for you, so the better thing you can do is to learn via Sololearn courses:-
https://www.sololearn.com/learn/courses/JUMP_LINK__&&__python__&&__JUMP_LINK-introduction
https://www.sololearn.com/learn/courses/html-introduction
feel free ask doubts here!
+ 3
Teddy J I'm not that person, sorry.
+ 2
you can be your own best teacher. what's the secret? continuous learning.
as it mentioned: you can find here well written and really beginner friendly courses, with 0 background knowledge.
practice makes you better
0
Thanks man
0
Are you the one who message me on WhatsApp,if you are sorry for the way I reacted, can you please send me a message on WhatsApp and also I've unblocked you and I also think you are very pretty,any way's please reply and contact me.
0
Okay, good to know
0
HTML (HyperText Markup Language) Basics
HTML is the standard markup language for creating web pages. It provides the structure and content of a web page using a system of "tags." Think of it as the skeleton of a website.
Key Concepts:
* Markup Language: HTML uses tags to "mark up" the content, telling the browser how to display it. It's not a programming language; it doesn't perform logic or calculations.
* Elements and Tags:
* An HTML element is a component of a web page, such as a paragraph, heading, image, or link.
* Elements are defined by tags, which are keywords enclosed in angle brackets (e.g., <p>, <h1>, <img>).
* Most tags come in pairs: an opening tag (e.g., <p>) and a closing tag (e.g., </p>). The content goes between them.
* Some tags are "self-closing" or "empty" (e.g., <img> for an image, <br> for a line break) and don't require a separate closing tag.
* Attributes: Attributes provide additional information about an HTML element. They are placed within the opening tag and usually
0
Hereâs a quick way to get started that worked really well for me
1. HTML
- Begin with HTML basics: Learn tags like <p>, <h1>, <img>, <a>, etc.
- Use SoloLearn's HTML course
- Practice by creating a simple webpage: a portfolio, resume, or your favorite Tech page.
2. Python
- Start with variables, loops, functions, and conditional statements.
- Use SoloLearn's Python course
- Try to build (A calculator, A number guessing game, A simple to-do list using the console)