#html markup
Explore tagged Tumblr posts
Text
youtube
How Drupal Renders Pages | Access Control Rules | @lucavocella
Hey everyone, Welcome to our channel with another video! In today's video, we will discuss " How Drupal renders a web page in response to a visitor's request and much more? Let's start it together! Make sure to watch the video until the end, so that you don't miss any important information about Drupal renders pages. We hope you found this video helpful. If you want to know anything about Drupal, feel free to contact us.
Don't forget to like, share, and subscribe to our channel, so that you don't miss any updates in our channel about the latest content.
2 notes
·
View notes
Text

My recent attainment of basic html knowledge has been helpful to nobody.
#silly#meme#memes#html#html5#html css#hypertext markup language#website#funny#funnies#humor#html humor#html meme#cw mentions of pregnancy#idk man#shut the fuck up#pregnant man emoji#🫃#5 pregnant men#sorry
117 notes
·
View notes
Text

Owlet is "helping" with html today.
5 notes
·
View notes
Text
So I know how to code websites now, but idk how to upload it to the internet. My plan is to give you all a post that will update with a string of code to sort of visit the website(s?) that I am curating. I will reblog a post that had the original, and include a more patched version as time goes on. I am so sorry in advance.
Because of this.... Lemme show you how html and css works!!
For Project Our Realities, it will all be in html and css since that's what I'm learning so far. JavaScript will be included later.
HTML and CSS basics below!!
HTML, or Hyper-Text Markup Language is the basics of coding a website. It describes how a website will look. It unfortunately doesn't get you too far in terms of digital design, which is why we have languages like Css and javascript.
All HTML files start with <!DOCTYPE html>. This declares to the file that you will be coding in html rather than something like lua.
Each HTML file, after declaring it as an html file, starts with <HTML> and </HTML>. To end a tag, you must close it by adding a forward slash before writing its name (unless it is <br> or <hr>, or similar).
The <head> tag lets you add a title (silly little tab name), a favicon (silly little icon next to the name of the tab) and ways to link your CSS to the HTML.
An HTML file will look like this <!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
In the body, you can write the rest of your page, using headers (<h>/<h1-6>), paragraphs (<p>), and even forms (<form>).
--
CSS, also known as Cascading Style Sheets, is a type of coding language that is often used to create websites. No, it is not C++.
Rather than <>, CSS uses brackets {} to code.
CSS is used to style html websites, so it addresses html tags and lets you style their appearance. There is something known as inline CSS, where you can use the <style> tag to style something in your HTML file. HTML was never meant to have colors in its code, but you can change the color of text with inline css. Let's say you would like to style a header.
In your HTML file, it would say:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="(name of .css file goes here)">
</head>
<body>
<h1> My first header!!! :> </h1>
</body>
</html>
Now that we have our header, let's turn it red.
In your CSS file, it should say...
h1 {
color: red;
}
The H1 addresses that it will select all h1 elements. The code in the brackets shows that all those addressed will be the color red.
CSS has no starting or finishing lines, all elements will by stylized with {}.
--
To create an HTML file, you must end it with .HTML
To create a CSS file, you must end it with .css
Sometimes, when I create a link for the Css, the required name for the file will be in the HTML code already. Make sure that both files are in the same folder, and not one in a different folder within the same parent folder. This will not work.
--
Wanna test this out? Make a new notepad file on Windows, title it as "firsthtml.html", and create another file called "firstcss.css".
Place this in the .HTML file: <!DOCTYPE html>
<html>
<head>
<title> First HTML </title> <link rel="icon" type="image/x-icon" href="https://i.pinimg.com/736x/1a/8d/9d/1a8d9d26cdca15285d217c817f6953ec.jpg">
<link rel="stylesheet" href="firstcss.css">
</head>
<body> <h1>Welcome, traveler!!</h1>
<h3><I>Thank you for reading the tutorial!! Follow the blog to keep up with our news.</I><h3>
</body>
</html>
Now, for your .css file, write this down:
h1 {
color: dark blue;
}
h3 {
color: orange;
}
--
Thank you so much for following this tutorial. I mainly learned about this from w3schools and in my school course. Happy coding!!! :>
-ava
#.io#ava#ava our realities#io our realities#eps foundation#entertainment productions studio#project our realities#our realities#coding#html#HTML stuff#css#Css stuff#hyper text markup language#cascading style sheets#there will be more coding to come#I hope this helps you guys get into coding
3 notes
·
View notes
Text
My HTML-Certificate on MIMO ...

Post #153: MIMO (Multiple Input Multiple Output), Online Programming Learning Platform, My certificate of the HTML-Course, 2023.
#mimo#coding#html#script language#certificate#hypertext markup language#programming community#coding is fun#programmieren#i love coding#i love html#multiple input multiple output
6 notes
·
View notes
Text
Hmmm. There are two things in this post that are NOT like one another.
Education. The issue of people who don't know what files, folders, and basic IT skills are, and then, by extension, the issue of skill loss as older workers retire. This is a real issue, and speaking as one of those older IT workers, simply keeping up with the pace of advancing tech is hard too. Because everything is designed to be easier to use by people without training (a good thing) it has got harder to get under the hood and tweak things. Nothing is built for that. It all says 'developer friendly' but as systems develop, they become more and more complex and that means specialisation, which means tech workers with very precisely shaped beaks who can't easily generalise across different platforms or even come back to the same tree 3 years later and hope to recognise the bugs.
Control of personal information. These posts are all assuming that because 15 years ago they didn't have to click a pile of permission options, that their personal info wasn't being collected 15-20 years ago. Hahaha. No. What you are seeing there is the result of the EU GDPR legislation, which said, essentially 'if you want to gather data you must get explicit permission to do that'. This has set the precedent for data capture standards. So now, everything has a checkbox. Sometimes it's a checkbox for intrusive adware bordering on a security hole. Sometimes it's a checkbox for 'we couldn't figure out a way to make this work without some information from you'. You get to work out which it is! Yes, it makes the user experience more stressful and difficult. But it does at least give the user the chance to opt out, which back in 2000 wasn't given as an option.
Me: oh yeah, if you think school photography is hard now, try imagining doing this with film.
The new girl: what’s film?
Me: … film. Like… film that goes in a film camera.
New girl: what’s that mean?
Me: … before cameras were digital.
New girl: how did you do it before digital?
Me:… with film? I haven’t had enough coffee for this conversation
#seriously : data collection is not a new thing#Asking permission is the new thing#Also HTML and CSS are markup (formatting) languages#Python is a programming language it's really weird to see them lumped together like this
114K notes
·
View notes
Link
Chapters: 25/? Fandom: Fallout 4, Fallout (Video Games) Rating: Mature Warnings: Graphic Depictions Of Violence, Rape/Non-Con Relationships: Paladin Danse/Female Sole Survivor, Paladin Danse/Margot de Havilland, Arthur Maxson/Gwen Harper Characters: Paladin Danse, Female Sole Survivor, Sole Survivor Margot de Havilland, Nick Valentine, Piper Wright, Preston Garvey, Cait (Fallout), Deacon (Fallout), Robert Joseph MacCready, Curie (Fallout), John Hancock (Fallout), Dogmeat, Codsworth (Fallout), Synth Shaun, The AntAgonizer, Arthur Maxson, Scribe Gwen Harper (OC), Squire Phoebe Woods (OC), Paladin Henry Rex (OC), Team X-Ray, X6-88 (Fallout) Additional Tags: Canon-Typical Violence, Implied/Referenced Rape/Non-con, Action & Romance, Fluff & Angst, Grief/Mourning, Hurt/Comfort, Ants Will Inherit The Earth... Maybe, Love & Loss, Mutual Pining, Falling In Love, Love Confessions, Awkward Conversations, Speech Skill 100, Diplomacy (Or The Lack Thereof), Laughably Bad Disguises, Crazed Cultists, Arranged Marriage, Friends To Enemies To Frenemies... And Back Again, Unlikely Friendship/Empathy, Flashbacks & Nightmares, Emotional Trauma/PTSD, Espionage, Torture, Suicide Attempts, Corporal Punishment, Execution, Unethical Experimentation, Pregnancy Loss/Miscarriage, Military Funeral, Not The Bees!, Damn These Interruptions, Shakespeare-Grade Misunderstandings, What Does Dating Have To Do With Baseball Anyway? Summary:
When the Institute sought to redefine mankind, Danse and the Sole Survivor both got caught in the crossfire. Together, they're trying to pick up the pieces of their past and build a new future. Their bond is stronger than steel; their loyalty runs deeper than blood. But a new menace is spreading across the Commonwealth, a desperate search for answers only seems to raise more questions, and even the ties that bind them may not be enough to hold them together. Can they survive the rise of the AntAgonizer, or will the ants inherit the Earth and trample their world underfoot?
#Happy New Year!#have a new chapter#Our Bond Is Steel#OBIS#please excuse any typos or HTML markup errors#I have spent a lot of very late nights writing this#I'll probably catch them soon lol
0 notes
Text
In the world of web development, HTML (Hypertext Markup Language) is the unsung hero that forms the backbone of every website and web application. It’s the language that structures the content we see and interact with on the internet. In this blog post, we’ll take a deep dive into HTML, exploring its history, structure, key elements, and its role in modern web development.
Visit Our Tumblr Web Design Blog
0 notes
Text
Create a web page to visualize the output of BitLocker Script
In this article, we will create Create a web page to visualize the output of BitLocker Script. This sample web page creation assumes you already have your scripts saved. We will be utilizing the Virtual Studio Code which is a a powerful and versatile code editor. Please see how to Install HTML Web Client for Microsoft RDS, How to Migrate Azure Web Apps, and “RDS client access licenses: How…
#CSS#CSS3#html#HTML in Visual Studio Code#HyperText Markup Language#javascript#Python#Text Automation#visual studio#Visual Studio Code#Visual Studio Extensions
0 notes
Text


Most games that have a dialogue system making use of more than one text style have an internal markup system (similar to e.g. HTML tags) used to determine properties of the text, such as size, color etc. inside the message.
In the Super Mario Galaxy games, some of these tags are not merely redundant but outright self-defeating, so that one tag may change the text properties only to be immediately undone by a different tag changing them to something else.
The image shows a baffling example of a message in Super Mario Galaxy 2 that visually changes color 5 times (starting with black, to red, to black, to blue and finally back to black), which would normally need no more than 5 color change tags.
However, internally, the game instead changes the color 10 times, including multiple times in a row into the same color. This messy implementation is likely a remnant of various rewrites of the original message whereby the tags were never cleaned up between revisions.
Main Blog | Patreon | Twitter | Bluesky | Small Findings | Source: HEYimHeroic
4K notes
·
View notes
Text
Today in "try not to get distracted challenge": I heard an offhand mention of the idea of a "writer deck" (device purpose-built to use writing software), figured "damn it would be cool to have a keyboard with macros for a bunch of common HTML/LaTeX features, that would save so much time," and spent a whole-ass hour going down a rabbit hole on mechanical keyboard customization.
Conclusion: I do not have the time, money, or hand precision (it seems like most options are going to involve soldering shit myself) to do this. However, making an IDE for authors would get me most of the way there and allow me to map shortcuts after the fact.
#authorposting#imagining like. eclipse or intellij but for markup languages (html/latex/etc.) instead of java#“refactor this css class” “show me a render that i can poke around in” the works
0 notes
Text
Markup: HTML Tags and Formatting
<strong>Headings</strong> Header one Header two Header three Header four Header five Header six Blockquotes Single line blockquote: Stay hungry. Stay foolish. Multi line blockquote with a cite reference: The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to…

View On WordPress
0 notes
Text
The Ultimate Guide to Next.js SEO: Expert Tips and Best Practices for Top Google Rankings

Welcome to the ultimate guide to Next.js SEO! Are you looking to optimize your Next.js website for top Google rankings? Look no further! In this extensive guide, we'll delve into professional tips and proven methods that can significantly improve your website's performance in search engine results.
Next.js stands out as a powerful framework for creating fast, server-rendered React applications. However, to fully harness the advantages of Next.js, it's vital to implement effective SEO strategies. That's where we step in!
In this guide, we'll thoroughly explore crucial SEO components, including optimizing metadata, structuring URLs, ensuring responsiveness, conducting keyword research, and more. We'll also provide you with valuable insights on crafting compelling content that's sure to win Google's favor.
With our expertise, you'll acquire the knowledge needed to enhance your Next.js website's visibility to search engines, making it more easily crawlable, indexable, and ultimately boosting its potential ranking. Whether you're an experienced developer or just beginning your journey with Next.js, this guide is essential for anyone aiming to conquer the realm of SEO.
Prepare to optimize your Next.js website like a pro and catapult your rankings on Google!"
#Next.js#SEO#Search engine optimization#search engine result pages#JavaScript#CSS#Breadcrumbs#schema markup#Google's Structured Data Testing Tool#Mobile usability#web analytics tool#Google Search Console#SEMrush#Ahrefs#Mobile optimization#HTML
0 notes
Text
Misgender caffeinate janky
I'm stealing this from Twitter
Here's the link
I am a high-definition gateway drug body double!
#the agender agenda#runners up include;#hominin#hypertext markup language (html)#air-quotes#eco-friendly#queso#scrunchie#viral marketing#I was born in the 80's#some of these were older than I thought#and a bunch were way younger than I thought
30K notes
·
View notes
Text
Distribution Formatting and Display
A site that allows users to paste text (including HTML markup for formatting and display of images) and distribute the resulting link - https://justpaste.it/u/adomainname
0 notes
Text
im learning HTML at school and i almost laughed out loud when i realized that i knew a lot of it already from being a prolific ao3 writer.
who knew fanfiction would teach you how to make websites?
1 note
·
View note