#Tech websites and blogs
Explore tagged Tumblr posts
moneysource99 · 1 year ago
Text
Top 8 Best Tech Websites and Blogs For 2024
The tech space is evolving in a fast-moving pace. Every single month, new technologies are invented and developed. To keep up with the tech world trends and news, here are some relevant tech-related to learn from for you. Best Tech Websites and Blogs These below tech platforms are some of the best resources online which cover a wide range of topics about technology, artificial intelligence, and…
Tumblr media
View On WordPress
0 notes
numbpilled-themes · 2 months ago
Text
Tumblr media Tumblr media
Old Web/Windown 98 Style HIGHLY CUSTOMIZABLE Neocities/Nekoweb Template
Tumblr media
LIVE PREVIEW DOWNLOAD FOR FREE
Tumblr media
FOLLOW ME ON KO-FI!
366 notes · View notes
thisischeri · 1 year ago
Text
Tumblr media
Homepage of Apple, 2001
instagram: cheri.png
256 notes · View notes
study-diaries · 7 days ago
Text
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
23 notes · View notes
lily-river · 1 month ago
Text
Tumblr media
In the last few weeks I have been introduced to a community of websites that have decided to take the web back for the individual and reject the modern web and its super connected nature. It’s a unique system and allows for organic connections by finding others’ pages, and the one that I would recommend is Neocities, a spiritual successor to Geocities!
wankoten.neocities.org
I’ve even made a site myself for a lot of my creative musings and as a hub for all my socials and creative works. Kinda like a caard page or a general directory for all things me. I have loved this project so much and I’ve also learned a significant amount of HTML and CSS coding @-@ There’s a lot to learn.
24 notes · View notes
thecozycat · 1 month ago
Text
Tumblr media
💛 Webring Wednesday #4: Pixel Cuties Webring 💛
Pixel Cuties is a throwback dream for lovers and makers of pixel dollz��those tiny, highly detailed avatars that once ruled the early 2000s internet. This webring is all about reviving the charm of customizable pixel art characters, made with bases and dressed up in everything from fairy wings to platform boots. It's a perfect digital hangout for anyone who misses the glittery days of The Doll Palace or just loves the pixel-perfect aesthetic of the old web.
What makes Pixel Cuties feel so special is its vibrant sense of community and dedication to keeping the dollz hobby alive. The site feels like a scrapbook filled with love, nostalgia, and sparkles, where new members are welcomed with open arms and old-school creativity thrives. Whether you're a seasoned dollmaker or just discovering the scene, this webring offers a warm, pastel-hued welcome to one of the internet’s most adorable art forms.
Check it out here: https://pixelcuties.club/
----------------------------------------------------------------------
Want to help the Small Web movement grow? Join us on other platforms. ♥
FB Page & Group: facebook.com/thesmallweb facebook.com/groups/thesmallweb
Twitter/X: x.com/smallweblove
Tumblr Community: tumblr.com/communities/thesmallweb
Mastodon: indieweb.social/@thesmallweb
23 notes · View notes
being-of-rain · 9 months ago
Text
Big Finish really did do such a bad job updating their website that they ground to a halt huh? No new stories and no new news for almost two weeks now.
34 notes · View notes
snowflop · 1 year ago
Text
Starting to think computers are actually the work of a dark and twisted demonic force.
16 notes · View notes
mydevdiary · 5 months ago
Text
Svelte Basics: First Component
I'm going through the Svelte tutorial since it's very comprehensive and up-to-date.
I'm going on a bit of a tangent before I start this post, but I'm straying away from YouTube videos and Udemy courses when learning new programming languages and frameworks. YouTube videos are too fragmented to get good information from. Courses (and YouTube videos) are usually not up-to-date, rendering parts of them useless. Not to mention that you have to pay for free information that's packaged in a course, which is kind of scummy.
Anyway, I've gotten quite a bit further than just the introduction section of Svelte basics, but I don't want to overload myself (or readers) with information.
My First Svelte Component:
This section was relatively straightforward. There wasn't much new information, but I was hooked because of its simplicity. I personally love the idea of having the script tags be a place to define variables and attributes:
<script> let var = "a variable!" </script>
<p>I'm {var}</p>
The example above shows how dynamic attributes are used. I can basically define any variable (and states, but that'll be for the next post) between the script tags that can be used in HTML.
This may seem mundane to programmers experienced in Svelte, but I think it gives really good insight into the philosophy behind Svelte. It's clear that they wanted to keep the language simple and easy to use, and I appreciate that.
As I mentioned in my introductory post, I have a background in React, which has a reputation for being convoluted. Well, maybe that's just my perception, but how Svelte is written is a breath of fresh air!
I look forward to making more posts about what I learn and my attempts at understanding it.
Until next time!
2 notes · View notes
afrantechnology · 6 months ago
Text
7 Must-Have WordPress Plugins for 2025
7 Essential WordPress Plugins I Always Install (2025 Edition)
Looking to enhance your WordPress site? Here are the 7 must-have plugins I recommend for 2025:
Rank Math SEO – Effortless SEO optimization.
WP Rocket – Boost your site speed with caching.
Elementor Pro – Easily design stunning pages.
WPForms – Create interactive forms to engage visitors.
Akismet Anti-Spam – Keep spam at bay.
UpdraftPlus – Secure and back up your data.
WooCommerce – Build and manage online stores seamlessly.
These plugins will supercharge your site’s performance, security, and functionality!
Read more: 7 Essential WordPress Plugins
Tumblr media
2 notes · View notes
cs-med-world-insights · 10 months ago
Text
ANNOUNCEMENT!
We have a website where we will be posting our new posts soon. Please start visiting this website for new updates and posts.
This is our new website: https://csmedworldinsights.wordpress.com
Please share this, reblog and comment!
3 notes · View notes
puppytoast · 2 years ago
Text
People see a change with a term they don't like slightly associated with said change and go "hmm I will unintentionally spread misinformation because i'm scared today"
12 notes · View notes
numbpilled-themes · 3 months ago
Text
Tumblr media
rareware roulette - abyssal/minimalist html nekoweb/neocities theme
Tumblr media
LIVE PREVIEW DOWNLOAD
Tumblr media
40 notes · View notes
tethered-heartstrings · 2 years ago
Note
heyyy, how do you make your edits???
it's just me and microsoft paint against the world
9 notes · View notes
study-diaries · 6 days ago
Text
Day 2 [Multimedia Elements In HTML]
Welcome to day 2 :D
Day 1 [Introduction To HTML]
Tumblr media
Line By Line Explanation:
(An attribute is extra info added to an HTML tag. So, is a tag. Src, alt, width and height are the attributes)
Tag : Used to add images to webpages
src : Used to give the URL of the image or the name of the image file
alt : specifies what will appear on the browser in case the image doesn't appear.
Width and height : Specifies the width and height.
Tag : Used to add audio
controls: shows a play/pause bar.
: your audio file (paste your file link there).
Type: Tells the browser what file you're showing it
Tag: Used to add videos
controls : lets users play/pause the video.
width and height: size of the video frame.
: your video file (paste your file link there).
Here's The Output →
Tumblr media
Additional Tip : Download these two extensions because they're really helpful.
Tumblr media
Live Preview helps you to look your output without having to save it every time you make a change in VS code
Live Server is similar, it just shows you the output on the webpage.
You can search for these two in the extensions icon on the side.
_____________________
Hope it helps. Tomorrow, we'll cover links and lists xD
12 notes · View notes
thesomethingguy · 14 days ago
Text
Meet Carlo Acutis: The Catholic Church’s First Millennial Saint
0 notes