Youre In Her Dms Im On Wikipedia Looking At Bronze Age Tombs
youre in her dms im on wikipedia looking at bronze age tombs
-
im-a-car-now-too liked this · 11 months ago
-
punchline229 liked this · 11 months ago
-
ichayalovesyou liked this · 11 months ago
-
tatterings reblogged this · 11 months ago
-
livingforfictionalcharacters liked this · 11 months ago
-
oogelyboogely reblogged this · 11 months ago
-
oogelyboogely liked this · 11 months ago
-
highladyofduskcourt reblogged this · 11 months ago
-
emperorcandy reblogged this · 11 months ago
-
aquilesbarto liked this · 11 months ago
-
the-love-giver liked this · 11 months ago
-
heartfluttered liked this · 11 months ago
-
almightycows reblogged this · 11 months ago
-
kiwihoofer liked this · 11 months ago
-
naevabelle liked this · 11 months ago
-
joyocean reblogged this · 11 months ago
-
joyocean liked this · 11 months ago
-
darknessncupcakes reblogged this · 11 months ago
-
darknessncupcakes liked this · 11 months ago
-
babyloniastreasure reblogged this · 11 months ago
-
otaku-tactician reblogged this · 11 months ago
-
otaku-tactician liked this · 11 months ago
-
fortunatelyflowerless reblogged this · 11 months ago
-
biangthe37th reblogged this · 11 months ago
-
1oveaura reblogged this · 11 months ago
-
hcolleen reblogged this · 11 months ago
-
lantanacamaras liked this · 11 months ago
-
ireallyhavetofartguys reblogged this · 11 months ago
-
ireallyhavetofartguys liked this · 11 months ago
-
englishmagic reblogged this · 11 months ago
-
jack-of-no-cows reblogged this · 11 months ago
-
1200flowers reblogged this · 11 months ago
-
delinquent-pigeons reblogged this · 11 months ago
-
edumacatedgiraffe reblogged this · 11 months ago
-
edumacatedgiraffe liked this · 11 months ago
-
sayfin liked this · 11 months ago
-
postcardsfrompemberly reblogged this · 11 months ago
-
friendamedes liked this · 11 months ago
-
monroeknoxwrites reblogged this · 11 months ago
-
mayatuks-catastrophe reblogged this · 11 months ago
-
theskyeel liked this · 11 months ago
-
winewidower reblogged this · 11 months ago
-
constantly-in-another-reality liked this · 11 months ago
-
freckleddaisies reblogged this · 11 months ago
-
rosefyrefyre liked this · 11 months ago
-
greatscottdoc reblogged this · 11 months ago
-
markatch reblogged this · 11 months ago
-
pretty-in-peachy reblogged this · 11 months ago
-
pretty-in-peachy liked this · 11 months ago
-
silver-hibiscus reblogged this · 11 months ago
More Posts from Sagxbi




・゚⊹ ˚ · saturn · ˚ ⊹ ˚·

Artwork by: Gusfink🖤

The Midwestern Princess
Basics of HTML5: Let's build a webpage!

I'm a huge advocate for learning HTML5 as your first coding language (remember, it's not a programming language)! HTML5 is a great and easy coding language to get you into the feel of coding, especially for complete complete beginners!
I see a lot of people on Tumblr wanting to get into just creating their own websites but don't know how to start - coding is a new thing to them! So, I'm here to help with the language I know like it's the back of my hand!
And I am also an advocate of building projects in order to learn anything in coding/programming! Thus, what better way to learn the basics of HTML5 than to actually build a simple webpage? Let's get started~!

What is HTML5?
HTML, which stands for Hypertext Markup Language, is a special coding language that is used to create webpages. With HTML, you can tell a web browser, like Google Chrome or Safari, what to display on a webpage, such as text, images, and videos. And 'HTML5' is just the latest version of HTML!
HTML tags are special words or symbols that you use to create webpages. You use these tags to tell the web browser what content to display on a webpage, like headings, paragraphs, images, links, and more. Tags come in pairs (most of the time) so you'll have an opening tag and a closing tag. An example of the syntax:


The Simple Webpage
As I mentioned, we will be making a simple webpage for a person called David - see, he needs a portfolio webpage to start off with, and we're going to help me (as well as learning HTML5, of course).
Here is the code we will be using:


Pretty code, I know but also a bit confusing - let's get into understanding the code by grouping them into chunks! But just a heads up, the code includes these tags:
!DOCTYPE html (mmh it's more of a declaration really)
html, head, body
title
h1, h2, h3
p, a
li, ul, ol
These are some of the common tags used in all webpages on the internet! Okay, let's look at the code finally~!

The basic structure of every HTML page

Every HTML file looks like this - it has to have all of these tags!
The first line, !DOCTYPE html tag, tells the web browser which version of HTML is being used.
The code is contained within html tags, which enclose the entire webpage.
The head tags contain information about the webpage, such as the title and links to other resources.
The body tags contain the main and visible content of the webpage, such as text, images, and videos.
Together, this code provides the basic structure for an HTML webpage, with the head tags containing metadata and the body tags containing the actual content.
In the head tags

The title tags enclose the title of the webpage. In this example, the title is "My Programming Blog".
The title appears in the title bar of the web browser and is often used by search engines and social media sites to display the name of the webpage.
In the body tags - Headings and paragraphs

The h1 tags create a main and biggest heading, which in this case is "Welcome to My Programming Blog!" - you can only have one h1 tag on a webpage.
The h2 tags create subheadings, which in this case include "Latest Post", "About Me", and "My Projects" - you can have multiple h2 to h6 tags on a page.
The h3 tags create a sub-subheading under h2 tags, which in this case is "How I Improved My Coding Skills".
The p tags create paragraphs of text that provide more detail about the blog's content and purpose, including a summary of the latest blog post and information about the author and their projects.
In the body tags - lists and links

To start any list, you need to either start with ul tags or ol (ordered (numbered)) tags
The ul tags create an unordered list of items.
The li tags create list items within the unordered list.
Each list item includes a hyperlink created using the 'a' tags, with the text of the link being the name of a programming project.
The href attribute within each 'a' tag specifies the URL where the project code can be found on GitHub.
Attributes go inside the opening tags' arrows '<' and '>'.

The End Result

Boom - she's gorgeous, I know! A basic, simple webpage! We did it! You can see the page live + the code used here: [LINK]. Play around with the code, change things, experiment, break things, fix them - do what you need to learn further!
And that includes some online resources to help!
LINK 1 | LINK 2 | LINK 3
And some resources/posts I have shared about HTML
LINK 1 | LINK 2 | LINK 3
What next?
Learn CSS3! The page looks basic and looks like what pages were like when the internet was invented! You need colour, fancy fonts and layouts! CSS helps with that, as it is a styling sheet! Be sure to do some research but I also share resources on my blog under my #resources tag!

Thank you for reading and best of luck learning coding/programming! Remember, this isn't the only way to get into coding! People even recommend languages like Python to be beginners' first language, but I say that HTML5 should be the first coding language and then Python is your first programming language - don't know the difference? I made a post about it here!!
But definitely for people going into Web Development, HTML5 all the way! I don't think you can avoid learning HTML5 with Web Development (not 100% sure though...)!
Anyhoo, have a nice day/night! 👋🏾💻💕
Hey, don’t cry. Free online database of Japanese folk lore