#web developer website
Explore tagged Tumblr posts
Text





RANDOM BUTTONS FOUND ON THE REMNANTS OF THE EARLY WEB DURING A SURFING SESH FROM EARLIER TODAY.... ENJOY?
(ko-fi)
#webcore#old web graphics#carrd graphics#web graphics#carrd resources#neocities#rentry decor#rentry graphics#carrd moodboard#carrd inspo#web resources#early web#old web#web design#web decor#web development#web stamps#web weaving#webdesign#webdevelopment#website#page decor#header#early internet#old internet#rentry inspo#inspiration#88x31 buttons#buttons#frames
7K notes
·
View notes
Text
PALING MURAH! (WA) 0895-3248-17728 | SAGALA DIGITAL - Jasa Pembuatan Website Sekolah Murah di Jl. Patuha Bandung
Hubungi 0895-3248-17728, Sagala Digital membangun website yang sesuai dengan kebutuhan klien Memberikan pelayanan cepat, responsif, dan terkoneksi dengan media sosial. biaya pembuatan website perusahaan,jasa maintenance website,harga bikin website,buat website perusahaan,harga website company profile
Informasi & Pemesanan hubungi :
Whatsapp : 0895-3248-17728
Kunjungi website sagaladigital.com/
Jl. Ambon Bandung,Jl. Cipedes Bandung,Kebon Gedang Bandung,Binong Jati Bandung,Gatot Subroto Bandung,Surapati Bandung,Jl. Diponegoro Bandung,Jl. Cihapit Bandung,Jl. Aceh Bandung,Jl. Sumatera Bandung
#jasadesainwebsitesurabaya #jasawebdesignterbaik #jasawebdesigntasikmalaya #jasadesainwebtangerang #jasawebdesigntermurah #jasawebdesignwordpress #jasawebdesignyogyakarta #jasadesainwebyogyakarta #jasawebdesigner #jasawebdesignbali
#web developer makassar#web developer medan#web developer online#web developer terbaik di indonesia#web developer website#web developer wordpress#web developer yogyakarta#web developer yang bagus#jasa pembuat website#jasa pembuat website bandung
0 notes
Text
Old Web/Windown 98 Style HIGHLY CUSTOMIZABLE Neocities/Nekoweb Template
LIVE PREVIEW DOWNLOAD FOR FREE
FOLLOW ME ON KO-FI!
#old web graphics#css#cybercore#html#html css#htmlcoding#web graphics#web resources#neocities#neocities template#nekoweb#web development#temple os#free template#template#rentry template#blog theme#tumblr theme#themes#theme#neocities theme#neocities themes#neocities website#neopets#old tech#old internet#old web#oldweb#techcore#webcore
496 notes
·
View notes
Text

Excited to announce my new personal website :D WITHHH RESOURCES WOOHOOO
not to beg... but i spent a lot of time on this... reblogs appreciated <3
#neocities#rentry graphics#rentry decor#rentry inspo#rentry resources#png#cute pngs#png icons#png pack#random pngs#transparent png#web resources#web graphics#web decor#old web graphics#page decor#personal website#web development#geocities#old internet#2000s web#pixels#favicons#blinkies#stamps
236 notes
·
View notes
Text
also, i've made a new personal site!! @ meltknuckles.net
for now it's just a simple about me, my gifs & pixels, and my links. feel free to check it out 🐛💚
595 notes
·
View notes
Text
Essentials You Need to Become a Web Developer
HTML, CSS, and JavaScript Mastery
Text Editor/Integrated Development Environment (IDE): Popular choices include Visual Studio Code, Sublime Text.
Version Control/Git: Platforms like GitHub, GitLab, and Bitbucket allow you to track changes, collaborate with others, and contribute to open-source projects.
Responsive Web Design Skills: Learn CSS frameworks like Bootstrap or Flexbox and master media queries
Understanding of Web Browsers: Familiarize yourself with browser developer tools for debugging and testing your code.
Front-End Frameworks: for example : React, Angular, or Vue.js are powerful tools for building dynamic and interactive web applications.
Back-End Development Skills: Understanding server-side programming languages (e.g., Node.js, Python, Ruby , php) and databases (e.g., MySQL, MongoDB)
Web Hosting and Deployment Knowledge: Platforms like Heroku, Vercel , Netlify, or AWS can help simplify this process.
Basic DevOps and CI/CD Understanding
Soft Skills and Problem-Solving: Effective communication, teamwork, and problem-solving skills
Confidence in Yourself: Confidence is a powerful asset. Believe in your abilities, and don't be afraid to take on challenging projects. The more you trust yourself, the more you'll be able to tackle complex coding tasks and overcome obstacles with determination.
#code#codeblr#css#html#javascript#java development company#python#studyblr#progblr#programming#comp sci#web design#web developers#web development#website design#webdev#website#tech#html css#learn to code
2K notes
·
View notes
Text

#programmer humor#programming#geek#nerd#programmer#technology#computer#phone#mac#windows#os#operating system#website#web development#dev#developer#development#full stack developer#frontend#backend#software#hardware#html#css#meme#despicable me#gru#joke#software engineer#apple
475 notes
·
View notes
Text
Hi there! Embwee here!
I've been working on a web app that lets you create custom emojis using twemoji components - so you can make custom emojis for your discord server, twitch community, or simply for fun!
You can try it out below! I'd love feedback to influence future development of the project ~~
This app currently is not fully supported on mobile devices. Mobile support has been added!
138 notes
·
View notes
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
#code#codeblr#css#html#javascript#python#studyblr#progblr#programming#comp sci#web design#web developers#web development#website design#webdev#website#tech#html css#learn to code#school#study motivation#study aesthetic#study blog#student#high school#studying#study tips#studyspo#website development#coding
98 notes
·
View notes
Text

some skeleton gifs found off of GifCities !! none of these are mine I just found them archived :33
#rentry graphics#carrd graphics#web graphics#personal website#web 1.0#web resources#website#webcore#old web#web development#computer#ads#retro web#retro#retro aesthetic#retrowave#90s web#90s aesthetic#90s nostalgia#nostalgia#nostaligiacore#free graphics#assets#aesthetic assets#cool stuff#cool graphics#geocities#neocities#nekoweb#neocities graphics
97 notes
·
View notes
Text

I accidentally pressed down arrow and apparently you can input negative years. My age? I was not born. Now let me in. XD
#dead by daylight#dbd#web development#a feature not a bug#truly one of the websites ever#of all age verification screens this is one of them
111 notes
·
View notes
Text


WEB BANNERS FOR U!!! ENJOY <333 THESE ARE SO RANDOM LOL
(ko-fi)
#webcore#old web graphics#web graphics#carrd graphics#neocities#carrd resources#captcha#rentry decor#rentry graphics#carrd moodboard#carrd inspo#window#early web#old web#web design#web decor#web development#web resources#web stamps#web weaving#webdevelopment#webdesign#writing#website#page decor#manga page#anime gif#anime banner#banner design#banners
3K notes
·
View notes
Text
BERKUALITAS! (WA) 0895-3248-17728 | SAGALA DIGITAL - Jasa Pembuatan Website Sidoarjo di Jl. Pasundan Bandung
Hubungi 0895-3248-17728, Sagala Digital membangun website yang sesuai dengan kebutuhan klien Memberikan pelayanan cepat, responsif, dan terkoneksi dengan media sosial. jasa pembuatan website medan,jasa pembuatan website mlm,jasa pembuatan website media online,jasa pembuatan website news,jasa pembuatan web nganjuk
Informasi & Pemesanan hubungi :
Whatsapp : 0895-3248-17728
Kunjungi website sagaladigital.com/
Ciseureuh Bandung,Pasirluyu Bandung,Pungkur Bandung,Cipedes Bandung,Pasteur Bandung,Sukabungah Bandung,Sukagalih Bandung,Sukawarna Bandung,Gegerkalong Bandung,Isola Bandung
#jasabuatwebsiteprofesional #jasamembuatweb #hargajasapembuatwebsite #jasapembuatanweb #perusahaanpembuatanwebsite #jasawebdesainprofesionaldanberkualitas #jasawebdesainadalah #webjasadesaingrafis #jasadesainwebjogja #jasadesainwebbandung
#web developer makassar#web developer medan#web developer online#web developer terbaik di indonesia#web developer website#web developer wordpress#web developer yogyakarta#web developer yang bagus#jasa pembuat website#jasa pembuat website bandung
0 notes
Text
HOLLOW BLISS - TUMBLR THEME interactive and highly custom theme for your blog
FEATURES: - tabbed content with interactive visuals - high customizability - ethereal 3d sidebar widget in three.js - vibes
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]
#old web graphics#css#cybercore#html#htmlcoding#html css#web graphics#web resources#tumblr themes#artists on tumblr#on tumblr#tumblr theme#tumblr html theme#blog theme#theme#themes#blog resources#purple#web development#early web#old web#web decor#web design#web weaving#webcore#webdesign#webdevelopment#website#nhela#template
135 notes
·
View notes
Text




Hello! I'm reaching out to share about a fundraiser that's very important to me. Muhammad, a hardworking UX UI designer from Gaza, is seeking help to escape the harsh conditions he and his family are currently living in. The funds raised will help Muhammad and his family move to Egypt, where they can live a safe and dignified life. The travel costs are high, and every bit of help counts. Muhammad's story is one of resilience and ambition. By supporting this fundraiser, we can help him continue his journey to safety. Please consider donating and sharing this message. Thank you!
Help me and my children we are dying now
This family has a lot of money, while my family and I have no food or drink. My father is dead and my mother is disabled. Help me.https://www.gofundme.com/f/support-alashqar-familys-path-to-safety
Blaze
857 notes
#america#basketball#legend of zelda#comics#video#czrsed#i stand with palestine#design#ui ux design#ui ux development services#web development#website#ux research#ui#ai#london#new zealand#self love#ecommerce#israel is a terrorist state#chairty#help my family#help my friend#mental health#death note#children#cats of tumblr#warrior cats#cute animals#united nations
61 notes
·
View notes