#Website Development
Explore tagged Tumblr posts
alycesutherland · 4 months ago
Text
First Steps:
So I want to learn how to get access to the spotify api and my data first in my terminal. So I want to:
Get my top albums in terminal
Get my top artists in terminal
Get my top songs in terminal
If I figure it out really quick:
Add that json data into an xbar project on my Macbook
If that is easy then I'll add more stuff for when you click on xbar
8 notes · View notes
study-diaries · 1 month 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
79 notes · View notes
captdedeyes · 2 years ago
Text
Friendly reminder that Wix.com is an Israeli-based company (& some website builders to look into instead)
I know the BDS movement is not targeting Wix.com specifically (see here for the companies they're currently boycotting) but since Wix originated in Israel as early as 2006, it would be best to drop them as soon as you can.
And while you're at it, you should leave DeviantArt too, since that company is owned by Wix. I deleted my DA account about a year ago not just because of their generative AI debacle but also because of their affiliation with their parent company. And just last month, DA has since shown their SUPPORT for Israel in the middle of Israel actively genociding the Palestinian people 😬
Anyway, I used to use Wix and I stopped using it around the same time that I left DA, but I never closed my Wix account until now. What WAS nice about Wix was how easy it was to build a site with nothing but a drag-and-drop system without any need to code.
So if you're using Wix for your portfolio, your school projects, or for anything else, then where can you go?
Here are some recommendations that you can look into for website builders that you can start for FREE and are NOT tied to a big, corporate entity (below the cut) 👇👇
Carrd.co
Tumblr media
This is what I used to build my link hub and my portfolio, so I have the most experience with this platform.
It's highly customizable with a drag-and-drop arrangement system, but it's not as open-ended as Wix. Still though, it's easy to grasp & set up without requiring any coding knowledge. The most "coding" you may ever have to deal with is markdown formatting (carrd provides an on-screen cheatsheet whenever you're editing text!) and section breaks (which is used to define headers, footers, individual pages, sections of a page, etc.) which are EXTREMELY useful.
There's limits to using this site builder for free (max of 2 websites & a max of 100 elements per site), but even then you can get a lot of mileage out of carrd.
mmm.page
Tumblr media
This is a VERY funny & charming website builder. The drag-and-drop system is just as open-ended as Wix, but it encourages you to get messy. Hell, you can make it just as messy as the early internet days, except the way you can arrange elements & images allows for more room for creativity.
Straw.page
Tumblr media
This is an extremely simple website builder that you can start from scratch, except it's made to be accessible from your phone. As such, the controls are limited and intentionally simple, but I can see this being a decent website builder to start with if all you have is your phone. The other options above are also accessible from your phone, but this one is by far one of the the simplest website builders available.
Hotglue.me
Tumblr media
This is also a very simple & rudimentary website builder that allows you to make a webpage from scratch, except it's not as easy to use on a mobile phone.
At a glance, its features are not as robust or easy to pick up like the previous options, but you can still create objects with a simple double click and drag them around, add text, and insert images or embeds.
Mind you, this launched in the 2010s and has likely stayed that way ever since, which means that it may not have support for mobile phone displays, so whether or not you wanna try your hand at building something on there is completely up to you!
Sadgrl's Layout Editor
Tumblr media
sadgrl.online is where I gathered most of these no-code site builders! I highly recommend looking through the webmaster links for more website-building info.
This simple site builder is for use on Neocities, which is a website hosting service that you can start using for free. This is the closest thing to building a site that resembles the early internet days, but the sites you can make are also responsive to mobile devices! This can be a good place to start if this kind of thing is your jam and you have little to no coding experience.
Although I will say, even if it sounds daunting at first, learning how to code in HTML and CSS is one of the most liberating experiences that anyone can have, even if you don't come from a website scripting background. It's like cooking a meal for yourself. So if you want to take that route, then I encourage to you at least try it!
Most of these website builders I reviewed were largely done at a glance, so I'm certainly missing out on how deep they can go.
Oh, and of course as always, Free Palestine 🇵🇸
499 notes · View notes
cassidycastle · 15 days ago
Text
So basically just put your business and ads in the
I’m working on a website for my game where it’s gonna be full of ads since the fandom wants it to be free so I’m gonna comply… btw I’m looking for ads or promotions to feature there. If you have a business, YouTube channel, or social media profile you’d like to share, let me know! I’m interested in connecting and helping promote different creators and projects. Just looking for cool ads to add to the site. I’m not gonna tell you which game but it’s indie
10 notes · View notes
atcuality3 · 1 month ago
Text
Simplify Decentralized Payments with a Unified Cash Collection Application
In a world where financial accountability is non-negotiable, Atcuality provides tools that ensure your field collections are as reliable as your core banking or ERP systems. Designed for enterprises that operate across multiple regions or teams, our cash collection application empowers agents to accept, log, and report payments using just their mobile devices. With support for QR-based transactions, offline syncing, and instant reconciliation, it bridges the gap between field activities and central operations. Managers can monitor performance in real-time, automate reporting, and minimize fraud risks with tamper-proof digital records. Industries ranging from insurance to public sector utilities trust Atcuality to improve revenue assurance and accelerate their collection cycles. With API integrations, role-based access, and custom dashboards, our application becomes the single source of truth for your field finance workflows.
4 notes · View notes
o2studies · 13 days ago
Text
23:32 || ༻`` 2 June — Monday
57 days of productivity, 40/57
The Sci Journal has a new entry!! A Brief History of Time written by @hyacinth-dancing-in-rain !
The article dives down into the different types of clocks through the ages, why they were used, their mechanics and operation, and other fun/interesting details!!
And a quick website update: Due to technical issues, images will no longer appear in articles from 02/06/25 until the issue is resolved. At some point in the summer of 2025, The Sci Journal will change website platforms and with it its domain link.
Notice will be provided at the change and when the new website is available to view
But anyway,
Today I've procrastinated quite a bit, but after 2hrs 13 I finished a marh past paper and went through the stats half of the textbook, noting down any formulas and important details which has been really helpful already! I'm postponing the second past paper I was meant to do today for tm.
Today I also journalled, drew (I forget how much I love colouring pencils and the pieces I make from them!) and watched another episode of Noughts and Crosses — which I'm absolutely in love with!!!! It's based off of a book series that I also adored and it has taken me a few years to actually find where I can watch this series for free! And when reading the books I never considered the cultural effects and influence from Africa that the idea would being so it has been amazing visualisation also!! I think I've only got 2 episodes left tho :( (I know what it's all leading up to 😭)
Tumblr media
Day /
Day 0
Floor time ☑️ // 🍊
21 notes · View notes
therian-database · 8 months ago
Text
im back!!
and i have A LOT to say. i need a few creatures with experience coding html to help build a website with me. i don't know the specific software that we'll use, but if someone with a good chunk of experience can help me i would be forever grateful. please keep in mind that no one is obligated to do this, it has no pay and i could technically do it myself... it would just take a while. this is a passion project driven by the community, and it's been on sort of a hiatus because i just started my sophomore year of highschool. im currently working my ass off trying to plan out basic ideas for pages and how the website might look on computer and mobile. i would just like to thank everyone and anyone who has taken a little time to read even one of my posts, it not only makes me feel appreciated but most of all it makes me feel like the alterhuman community really is a community.
xoxo,
aspen
56 notes · View notes
mostlyghostly42 · 5 months ago
Text
webdev websites list
Web Design Free and Premium Resources - Webgyaani 
Internet History Sourcebooks Project 
Webpage archive 
Your Website Needs to Work on Phones - Kalechips 
Mobile Friendly via CSS - Dannarchy 
Clagnut by Richard Rutter 
CSS { In Real Life } 
CSS-Tricks - Tips, Tricks, and Techniques on using Cascading Style Sheets. 
90's Cursor Effects 
Web Design Museum 
Milestones Archive - The History of the Web 
All Paths | The Odin Project 
Developer Roadmaps - roadmap.sh 
XP.css - A design system for building faithful recreations of old UIs 
GTmetrix | Website Performance Testing and Monitoring 
sadgrl.online 
Peregyr Art & Design 
R.V.Klein 🐇 HOME 
lunospace 
goblin-heart.net 
Reliquarian 
Dark theme - Material Design 
32-Bit Cafe 
Cappuccicons Font 
BASIC HTML COMPETENCY IS THE NEW PUNK FOLK EXPLOSION! 
13 notes · View notes
bipin77589 · 5 months ago
Text
We focus on delivering responsive, user-friendly designs that provide a seamless experience across all devices, including mobile phones, tablets, and desktops. Our expertise in platforms like WordPress and Shopify allows us to build scalable websites with robust features, perfect for businesses of all sizes.
10 notes · View notes
pong03 · 5 months ago
Text
HELLO TUMBLR COMMUNITY
SHARE TO ME YOUR NEOCITIES PLEASE
AND YOUR TIPS FOR WEB DESIGN AND LEARNING HTML,CSS, AND JAVASCRIPT.
I am just a child (18) who desires the freedom of neocities and a space hey. I need your guidance and knowledge.
I know some goated mf 14 yr old is gonna be the one who has the most knowledge and I'm gonna feel like I wasted my time haha.
but fr, i really want to get into this and HTML is already a big tumblr thing, before the total twitterfication of this website. So yeah I'd love tips or if you just want to share your own websites it would be so COOL. I'm legit a total newbie who learned to code a little bit for a data science class, which is more like python type shit.
8 notes · View notes
study-diaries · 16 days ago
Text
Day 6 [Forms In HTML]
Introduction To HTML
Day 2 [Multimedia Elements In HTML]
Day 3 [Table in HTML]
Day 4 [Link Tag In HTML]
Day 5 [Lists In HTML]
Forms are basically used for collecting user information. And they are really important to learn. Here's a simple form in HTML:
Code:
Tumblr media Tumblr media Tumblr media
Line By Line Explanation:
<form>: Used for creating forms. All the form elements go in this tag. Action: When submitted, data is sent to this file or URL [index.html] Method="post": Sends data
<label> : This describes the input tag for="___": Connects the label to the input with id="name" id : gives a unique identification to the tag <input>: It's used to make the form elements
<input> Type Elements :
type="text" : A simple text box is created.
type="email" : A box to input email.
type="checkbox" : A small square that users can tick. Can select multiple options using this.
type="radio" : A small circle, you can only select one option.
type="submit" : A button that submits the data to the server.
<textarea>: Accepts multiple lines of text. rows="4": It creates 4 lines cols="30": It creates 30 characters
<select> : Creates a drop-down list <option>: Creates an item in the dropdown. value="colorname": This is the data sent to the server if chosen.
Output For The Code:
Tumblr media
_______________________
Hope This Helps !!
28 notes · View notes
perestroika-hilton · 9 months ago
Text
Tumblr media
My dear friend @99xtal made a website bluthinator that acts as a search engine for arrested development episodes. It's inspired by frinkiac and similar TV show indexing websites.
Here is their github
It would help a lot if you guys fucked around and give feedback especially if you find a bug.
11 notes · View notes
mashounen1945 · 1 year ago
Text
Does anyone here feel like explaining this "no note bungus" thing?
So...
There's this post by @itwashotwestayedinthewater from the 13th of August 2016 that just says "bungus" followed by a reblog by the same user saying "welcome to 'no note bungus'. reblog and you will feel a sense of accomplishment and goodwill wash over you". No matter how many people replied to it, reblogged it or liked it, none of those replies, reblogs or likes would appear on the post's notes, not even the OP's reblog where they added the second part of the post.
It became even weirder in the last couple of days, when some likes actually started appearing on the notes and the note counted became a number other than zero for the first time in almost eight years. Those likes are also very strange by themselves: the users appearing in the list of likes to the No Note Bungus post also change depending on where you're reading the post.
And something even crazier is that, on the 20th of September 2022, one reblog had appeared on the notes, been screen-capped, and then disappeared again.
I know some people here know about websites and other internet & computer science stuff, and they might be able to provide at least some possible answers to why such a thing as the No Note Bungus post even exists. A few of them already explained successfully other bizarre Tumblr phenomena, like a bunch of posts with special letter fonts and text effects that became famous for losing their absolute s*** when someone tried to read them on Tumblr's mobile app. If anyone with actual technical knowledge of how Tumblr works reads this, please come out and enlighten us, so we can go to sleep with the peace of mind of knowing that this mystery is solved and isn't gonna haunt our dreams or something.
19 notes · View notes
kapilblogs123 · 6 months ago
Text
Tumblr media
Digital Marketing Agency In India
If you're looking for the Best digital marketing agency in India, Digital Hub4u is a good choice. They also assist in promoting your company on the internet, such as through SMM, SD, PPC advertising, and web page design. With their knowledge, your company can gain new customers, enhance the exposure of the brand, and demonstrate real-world results. Their team provides a one-on-one approach that will meet your specified objectives; digital technologies and a global business world full of technological advancements have been the key to success in the industry today. Dealing with Digital Hub4u allows your business web presence to become a force field, so you can get on with promoting your company as efficiently and effectively as possible. Contact us today to begin your journey toward a more robust online presence
6 notes · View notes
atcuality3 · 5 months ago
Text
Empower Your Digital Presence with Cutting-Edge Frameworks
In today’s fast-evolving digital landscape, staying ahead requires more than just a functional website or application—it demands innovation and efficiency. At Atcuality, we specialize in Website and Application Framework Upgrade solutions tailored to your business goals. Whether you're looking to optimize performance, enhance user experience, or integrate the latest technologies, our team ensures seamless upgrades that align with industry standards. Transitioning to advanced frameworks not only improves loading speeds and scalability but also strengthens your cybersecurity measures. With Atcuality, you gain access to bespoke services that future-proof your digital assets. Let us elevate your online platforms to a new realm of excellence.
8 notes · View notes