Question:

What is HTML?

HTML stands for Hyper Text Markup Language.

Don't be intimidated by the fancy-sounding name, HTML is just how you tell a browser to do things like make text bold, show an image, and create a link.

Every web page is made of HTML. In fact, you can see the HTML for this page. If you're in a desktop browser, right-click anywhere on the page and select View Page Source.

Examples:
<b>bold text example</b>
is turned into bold text example.

<img height=100 src="/images/grey-profile-photo2.jpeg" />
is turned into my profile photo with a height of 100 pixels.

.

<a href="https://codeqna.com">Code Q&A Link!</a>
is turned into a link Code Q&A Link!

There are tons of great resources to learn HTML, checkout W3 Schools HTML tutorial.

#facts

You might also like


Code Q&A was built with Ruby on Rails! And it's server rendered! More specifically: Ruby on Rails...
#rails #meta

MVC stands for Model, View, Controller. But what does that mean? When you build web...
#facts

An Opinionated Framework is a Web Development Framework that makes a lot of the decisions for...
#facts #rails #express #framework