#Blogs on Website development
Explore tagged Tumblr posts
amikasoftwares · 1 year ago
Text
Amika Softwares provides various IT-related blog topics that deeply share information about Custom Software, SEO Services, Website Development, CRM & ERP solutions for business, etc.
1 note · View note
numbpilled-themes · 3 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!
496 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
98 notes · View notes
thecozycat · 3 months ago
Text
Tumblr media
💗 Self Promo Sunday 💗
It's Self Promo Sunday, Y'all! 🙌 Share your Small Web site either in the comments or a reblog and/or let us know what you've been working on lately!
--------------------------------------------------------------------------
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
46 notes · View notes
venusmage · 2 months ago
Note
Been following you since 2015 so I gotta ask: how you feelin about the Oblivion announcement chief
Tumblr media
48 notes · View notes
cassidycastle · 21 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
frogpols · 6 months ago
Note
So did you ditch sai2?
Im paying child support
8 notes · View notes
dooxliss · 3 months ago
Note
In the toad peach au. Imagine if peach used her toad form as a second identity to use in all of the party and sports games
game wise, i think it would be pretty fun! i might think about designing a racing outfit for her
in the au, though, i feel like the spin-off events don’t happen nearly as often due to me trying to squeeze in everything to happen by a certain time (but also the more volatile relationship peach has with bowser)
she loves sports and competition though, so they definitely happen (but likely in her human form unless it’s something much more casual on castle grounds)
4 notes · View notes
seeking-penitence · 2 months ago
Note
symbolic meaning? yes, i'm aware, though i did not know of those specific meanings, very interesting :]
suppose i should have been more specific however; other than an exterior appreciation, do you have internal connection to the forests? possibly similar to your friend, golden cheese cookie and the cheesebirds, as she harbors a connection to those creatures past just external factors.
-🪲
"Oh, I see! My apologies, I misunderstood your question."
"In terms of flora, I seem to only hold a connection to my namesake - white lilies. I can grow them easily but other plants...not so much. With fauna, I think I've gained a connection to the butterflies in the forest over time. They like to follow me around, at least. I don't mind, they're good company and they're rather sweet. It's probably silly to admit this but...sometimes when I'm alone I'll talk to them. About my frustrations, my fears, my guilt. Perhaps they just stick around me because of my scent but I like to think that they're listening to what I say."
6 notes · View notes
numbpilled-themes · 3 months ago
Text
Tumblr media Tumblr media
HOLLOW BLISS - TUMBLR THEME interactive and highly custom theme for your blog
Tumblr media
FEATURES: - tabbed content with interactive visuals - high customizability - ethereal 3d sidebar widget in three.js - vibes
Tumblr media
DOWNLOAD HERE
[i took a poll on ko-fi asking which types of themes you guys would be interested in from me and it was an overwhelming vote for tumblr, so i decided to start focusing more on tumblr themes rather than neocities. i hope you guys enjoy the next few tumblr themes as much as i enjoy this one! purple is my thing.. ha, thanks for following<3]
135 notes · View notes
study-diaries · 22 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 !!
34 notes · View notes
thecozycat · 26 days ago
Text
Tumblr media
❤️ Monday Memes #11 ❤️
Algorithms, constant ads, pay walls, tracking, and walled gardens are so 2024. Leave behind the big data mining corporations and make your own indie website in 2025! That's what we're doing! ;)
Happy Monday!
-----------------------------------------------------------------
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
18 notes · View notes
ifoxclicks24 · 6 months ago
Text
How can I find the best web developer near me to bring my business ideas to life?
Tumblr media
Discovering the perfect web developercan transform your business landscape. Here are some steps to help you find the best web developer near you:
Research Online: Websites like iFox Clicks and Best Startup list top web development companies in Tamil Nadu. You can explore their profiles, services, and client reviews.
Check Local Listings: Look for web development companies in local business directories or platforms like Google My Business.
Ask for Recommendations: Ask your network for recommendations. Personal referrals often lead to reliable and trustworthy developers.
Review Portfolios: Check the portfolios of potential developers to see if their style and expertise align with your business needs.
Interview Candidates: Conduct interviews to assess their technical skills, communication abilities, and understanding of your project requirements.
Consider Freelancers: Platforms like Upwork and Freelancer have profiles of individual web developers who might fit your project well.
You can find a web developer who can bring your business ideas to life by following these steps. Should you require tailored suggestions or have additional inquiries, don’t hesitate to reach out!
3 notes · View notes
eternal-reverie · 1 year ago
Text
got the posting anxiety bad tonight
#click clack#ok a peak into my thought process and anxiety here we go#ok so the art is almost done and up to standard I would post onto my art blog#BUT for some reason the thought of posting art of my ocs there scares me#because even tho it’s my art blog in my mind it’s the equivalent to a art gallery that demands being detached????? from the art#like once I share it there it’s no longer ‘mine’ but to the public#and my ocs (plus the stories that go with them) are like the closest to my heart and relinquishing them feels like a lot#a part of my imagination that I spent so much time with developing over the years to be placed up for judgement…#so then the solution could be to put it here on my personal! the online space cozy enough and filled with other posts that could easily bury#the original posts I put here#but there goes my other dilemma. i don’t want them too associated with my personal for if one day i do muster up something for publication#my big fear is that ppl will find this space and go thru everything. the fear of being perceived and judged 😵‍💫#all the hypotheticals and anxiety for something that may not even happen#dumb mind problems my head made up 🙄#anyway writing it out helped lol I’m posting it to my art blog I decided 👍#I have to work on getting that blog to be comfortable space to post… i should lower that silly self imposed standard I set for myself#and be whatever about ppl being aware of my online presences#maybe… [grinding my teeth] I should post my messy sketches onto my art blog…#I should take my friends suggestion and make a website to feature my ocs…🤔#idk my only other solution that doesn’t feel viable to mitigate the anxiety is to slowly introduce my ocs in the background of setting art#just a slow drip until they are in the forefront#bleghhh whatever much ado about nothing it’s like I never posted my ocs ever when I have indeed posted them before on both places ( º_º )#I’m realizing it happens too when I post too much fanart in a row… I have curator disease??? 🫨#or something I used to be very particular about what order I reblog stuff like it used to be by color and content balanced out#I still do to a lesser degree… but it used to be pretty bad#post order compulsion????#the fear of being abrupt and incohesive in between posts…#if you read this far thanks you can now see how much this consumes me 🙃
7 notes · View notes
ecatech · 6 months ago
Text
ECA Technologies Inc.
Tumblr media
ECA Tech is comprised of a team of highly skilled professionals who are dedicated to prioritizing your needs. With expert development from diverse backgrounds, we strive for excellence in every project we undertake. Our unparalleled standards of quality ensure your success.
Formerly known as Albamerica Inc. 1997 and subsequently CanAmerica Tech 2000, ECA Tech offers professional and cost-effective web and software development solutions to marketing agencies in the USA and Canada.
With many years of experience working with Fortune 500 companies, ECA Tech specializes in a range of web services, including Ecommerce, AR/VR games and app development, animations, and software development.
Our four divisions cater to specific platform needs: Mobile Synergies, Design Toronto Web, 2SEO, and ECA Code.
2 notes · View notes
mydevdiary · 7 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