some misc dividers :3


#dc comics#dc#batman#batfam#bruce wayne#dick grayson#batfamily#tim drake#dc fanart



seen from France

seen from Russia
seen from China
seen from India
seen from United States

seen from Sweden
seen from China
seen from Sweden

seen from Australia

seen from Yemen
seen from Sweden

seen from Sweden
seen from United States
seen from United Kingdom
seen from Germany

seen from Kenya
seen from United States

seen from Netherlands

seen from Germany
seen from United States
some misc dividers :3
dessert dividers
· · ─────── ·𖥸· ─────── · ·
· · ─────── ·𖥸· ─────── · ·
please like or reblog if you use. credit is not necessary but it is appreciated <3
error page design for my website. coming this april on the world wide web
Introduction To HTML
[Note: You need a text editor to do this. You can use Notepad or Text Edit. But it's so much better to download VS Code / Visual Studio Code. Save it with an extension of .html]
HTML stands for Hyper Text Markup Language
It is used to create webpages/websites.
It has a bunch of tags within angular brackets <....>
There are opening and closing tags for every element.
Opening tags look like this <......>
Closing tags look like this
The HTML code is within HTML tags. ( // code)
Here's the basic HTML code:
<!DOCTYPE html> <html> <head> <title> My First Webpage </title> </head> <body> <h1> Hello World </h1> <p> Sometimes even I have no idea <br> what in the world I am doing </p> </body> </html>
Line By Line Explanation :
<!DOCTYPE html> : Tells the browser it's an HTML document.
<html> </html> : All code resides inside these brackets.
<head> </head> : The tags within these don't appear on the webpage. It provides the information about the webpage.
<title> </title> : The title of webpage (It's not seen on the webpage. It will be seen on the address bar)
<body> </body> : Everything that appears on the webpage lies within these tags.
<h1> </h1> : It's basically a heading tag. It's the biggest heading.
Heading Tags are from <h1> to <h6>. H1 are the biggest. H6 are the smallest.
<p> </p> : This is the paragraph tag and everything that you want to write goes between this.
<br> : This is used for line breaks. There is no closing tag for this.
-------
Now, we'll cover some <Meta> tags.
Meta tags = Notes to the browser and search engines.
They don’t appear on the page.
They reside within the head tag
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Website Description"> <meta name="Author" content="Your Name"> <meta name="keywords" content="Websites Keywords"> </head>
Line By Line Explanation:
<meta charset="UTF-8"> : Makes sure all letters, symbols, and emojis show correctly.
<meta name="viewport" content="width=device-width, initial-scale=1.0"> : Makes your site look good on phones and tablets.
<meta name="description" content="Website Description"> : Describes your page to Google and helps people find it.
<meta name="author" content="Your Name"> : Says who created the page.
<meta name="keywords" content="Website's Keywords"> : Adds a few words to help search engines understand your topic.
_____
This is my first post in this topic. I'll be focusing on the practical side more than the actual theory, really. You will just have some short bullet points for most of these posts. The first 10 posts would be fully HTML. I'll continue with CSS later. And by 20th post, we'll build the first website. So, I hope it will be helpful :)
If I keep a coding post spree for like 2 weeks, would anyone be interested? o-o
🌷🗝🕰⊹๑‧˚₊ (˶˃ᆺ˂˶) °❀.ೃ࿔* 𝒖 𝒏𝒊 𝒄𝒐𝒓𝒏𝒔 𝒂𝒓𝒆 𝒓𝒆𝒂𝒍꒷꒦ ๑ ♡ ₊˚ ✦ 🧁🪷🦄
i mean.... .. . ...they exist !!!!! !!! !
— y2k nostalgia website template 🌐 ✏️
A nostalgia-filled & fun carrd website for everyone from artists, streamers, creators, and internet-goers (free-plan friendly) ✿
pay-to-use ($10)
two pages: preview
available on vgen or kofi
Meme edits I made to explain my thoughts on coding languages I’ve used (from the perspective of a beginner making a website):
HTML
CSS
JavaScript