#web developer website
Explore tagged Tumblr posts
numbpill · 5 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
RANDOM BUTTONS FOUND ON THE REMNANTS OF THE EARLY WEB DURING A SURFING SESH FROM EARLIER TODAY.... ENJOY?
(ko-fi)
7K notes · View notes
desainweb · 11 months ago
Text
PALING MURAH! (WA) 0895-3248-17728 | SAGALA DIGITAL -  Jasa Pembuatan Website Sekolah Murah di Jl. Patuha Bandung
Tumblr media
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
0 notes
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
svelkaa · 30 days ago
Text
Tumblr media Tumblr media
Excited to announce my new personal website :D WITHHH RESOURCES WOOHOOO
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
not to beg... but i spent a lot of time on this... reblogs appreciated <3
236 notes · View notes
meltknuckles · 9 months ago
Text
Tumblr media
also, i've made a new personal site!! @ meltknuckles.net
Tumblr media
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
codingquill · 2 years ago
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.
2K notes · View notes
computer-nerd-girl · 11 months ago
Text
Tumblr media
475 notes · View notes
twemoji-maker · 3 months ago
Text
Tumblr media
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!
Tumblr media Tumblr media Tumblr media
138 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
artie-trash-hyena · 3 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
some skeleton gifs found off of GifCities !! none of these are mine I just found them archived :33
97 notes · View notes
nosferatu-del-fanart · 4 months ago
Text
Tumblr media
I accidentally pressed down arrow and apparently you can input negative years. My age? I was not born. Now let me in. XD
111 notes · View notes
numbpill · 5 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
WEB BANNERS FOR U!!! ENJOY <333 THESE ARE SO RANDOM LOL
(ko-fi)
3K notes · View notes
desainweb · 11 months ago
Text
BERKUALITAS! (WA) 0895-3248-17728 | SAGALA DIGITAL -  Jasa Pembuatan Website Sidoarjo di Jl. Pasundan Bandung
Tumblr media
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
0 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
alashqarmohammed · 2 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media
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
61 notes · View notes