This section covers HTML and CSS basics.
HTML is used for structuring content on the web, while CSS is used for styling that content.
Here's a code example:
<div class="container"> <p>This is a paragraph</p>
</div>
- HTML
- CSS
This section covers JavaScript and Java basics.
JavaScript is a scripting language used for web development, while Java is a general-purpose programming language.
Here's a code example:
console.log("Hello, world!");
- JavaScript
- Java
This section covers Python and Ruby basics.
Python is known for its simplicity and readability, while Ruby is known for its elegant syntax.
Here's a code example:
puts "Hello, world!"
- Python
- Ruby
This section covers Git and Github basics.
Git is a distributed version control system, while Github is a platform for hosting Git repositories.
Here's a code example:
git commit -m "Add new feature"
- Git
- Github
This section covers responsive design basics.
Responsive design ensures that web pages look good on all devices, regardless of screen size.
Here's a code example:
@media screen and (max-width: 600px) { body { background-color:
lightblue; } }
- Responsive Design