sagxbi - idk what this blog is anymore, baby.
idk what this blog is anymore, baby.

I've got other blogs. pretty gay, 22 she/her

431 posts

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
    im-a-car-now-too liked this · 11 months ago
  • punchline229
    punchline229 liked this · 11 months ago
  • ichayalovesyou
    ichayalovesyou liked this · 11 months ago
  • tatterings
    tatterings reblogged this · 11 months ago
  • livingforfictionalcharacters
    livingforfictionalcharacters liked this · 11 months ago
  • oogelyboogely
    oogelyboogely reblogged this · 11 months ago
  • oogelyboogely
    oogelyboogely liked this · 11 months ago
  • highladyofduskcourt
    highladyofduskcourt reblogged this · 11 months ago
  • emperorcandy
    emperorcandy reblogged this · 11 months ago
  • aquilesbarto
    aquilesbarto liked this · 11 months ago
  • the-love-giver
    the-love-giver liked this · 11 months ago
  • heartfluttered
    heartfluttered liked this · 11 months ago
  • almightycows
    almightycows reblogged this · 11 months ago
  • kiwihoofer
    kiwihoofer liked this · 11 months ago
  • naevabelle
    naevabelle liked this · 11 months ago
  • joyocean
    joyocean reblogged this · 11 months ago
  • joyocean
    joyocean liked this · 11 months ago
  • darknessncupcakes
    darknessncupcakes reblogged this · 11 months ago
  • darknessncupcakes
    darknessncupcakes liked this · 11 months ago
  • babyloniastreasure
    babyloniastreasure reblogged this · 11 months ago
  • otaku-tactician
    otaku-tactician reblogged this · 11 months ago
  • otaku-tactician
    otaku-tactician liked this · 11 months ago
  • fortunatelyflowerless
    fortunatelyflowerless reblogged this · 11 months ago
  • biangthe37th
    biangthe37th reblogged this · 11 months ago
  • 1oveaura
    1oveaura reblogged this · 11 months ago
  • hcolleen
    hcolleen reblogged this · 11 months ago
  • lantanacamaras
    lantanacamaras liked this · 11 months ago
  • ireallyhavetofartguys
    ireallyhavetofartguys reblogged this · 11 months ago
  • ireallyhavetofartguys
    ireallyhavetofartguys liked this · 11 months ago
  • englishmagic
    englishmagic reblogged this · 11 months ago
  • jack-of-no-cows
    jack-of-no-cows reblogged this · 11 months ago
  • 1200flowers
    1200flowers reblogged this · 11 months ago
  • delinquent-pigeons
    delinquent-pigeons reblogged this · 11 months ago
  • edumacatedgiraffe
    edumacatedgiraffe reblogged this · 11 months ago
  • edumacatedgiraffe
    edumacatedgiraffe liked this · 11 months ago
  • sayfin
    sayfin liked this · 11 months ago
  • postcardsfrompemberly
    postcardsfrompemberly reblogged this · 11 months ago
  • friendamedes
    friendamedes liked this · 11 months ago
  • monroeknoxwrites
    monroeknoxwrites reblogged this · 11 months ago
  • mayatuks-catastrophe
    mayatuks-catastrophe reblogged this · 11 months ago
  • theskyeel
    theskyeel liked this · 11 months ago
  • winewidower
    winewidower reblogged this · 11 months ago
  • constantly-in-another-reality
    constantly-in-another-reality liked this · 11 months ago
  • freckleddaisies
    freckleddaisies reblogged this · 11 months ago
  • rosefyrefyre
    rosefyrefyre liked this · 11 months ago
  • greatscottdoc
    greatscottdoc reblogged this · 11 months ago
  • markatch
    markatch reblogged this · 11 months ago
  • pretty-in-peachy
    pretty-in-peachy reblogged this · 11 months ago
  • pretty-in-peachy
    pretty-in-peachy liked this · 11 months ago
  • silver-hibiscus
    silver-hibiscus reblogged this · 11 months ago

More Posts from Sagxbi

1 year ago
 Saturn
 Saturn
 Saturn
 Saturn

・゚⊹ ˚ · saturn · ˚ ⊹ ˚·

1 year ago
Artwork By: Gusfink

Artwork by: Gusfink🖤

11 months ago
The Midwestern Princess

The Midwestern Princess

1 year ago

Basics of HTML5: Let's build a webpage!

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~!

Basics Of HTML5: Let's Build A Webpage!

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:

Basics Of HTML5: Let's Build A Webpage!
Basics Of HTML5: Let's Build A Webpage!

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:

Basics Of HTML5: Let's Build A Webpage!
Basics Of HTML5: Let's Build A Webpage!

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~!

Basics Of HTML5: Let's Build A Webpage!

The basic structure of every HTML page

Basics Of HTML5: Let's Build A Webpage!

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

Basics Of HTML5: Let's Build A Webpage!

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

Basics Of HTML5: Let's Build A Webpage!

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

Basics Of HTML5: Let's Build A Webpage!

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 '>'.

Basics Of HTML5: Let's Build A Webpage!

The End Result

Basics Of HTML5: Let's Build A Webpage!

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!

Basics Of HTML5: Let's Build A Webpage!

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! 👋🏾💻💕


Tags :
1 year ago

Hey, don’t cry. Free online database of Japanese folk lore