#website ui design
Explore tagged Tumblr posts
Text
Hey,
It's a long shot, but main fanfiction website in Russia slowly goes down as sinking ship due to LGBTQ restrictions and a lot of people start considering migrating to Ao3 as their new base.
But main interface sorta really unfriendly to people who don't understand English and I know that ao3 mods not really interested in fixing that, and I thought about how you can go about circumventing that.
Theoretically, it seems possible to change main terms on page via skin? But I don't really have hands on knowledge to know how to implement that. So I hoped that maybe other non-native English speakers, maybe Chinese folx, have any ideas or ways to change language on the main page.
Maybe some website add-on?
Thank you for your attention, I hope I stumble upon something
24 notes
·
View notes
Text
UI/UX Design Services Company | InStep Technologies
#ui ux design services#ui ux design company#user interface design#user experience design#mobile app ui design#web ui ux design#ui ux consulting#wireframe and prototype#intuitive ux design#custom ui ux solutions#ux design agency#ux testing and research#website ui design#app ux design
0 notes
Text
The Health Supplement Web UI Kit is an all-in-one solution for gym trainers, protein retailers, and wholesalers to sell protein powder online.
Build a platform to allow fitness freaks 💪 to browse, purchase, and learn about protein powder.
This pre-designed web UI Kit is the perfect solution to build a protein powder-selling website.
✅ Wishlist & shopping cart
✅ Order tracking
✅ Contact page
✅ Sort & filter
https://allclonescript.com/product-detail/health-supplement-ui-kit
#healthcare#health & fitness#fitness#workout#gym#website ui design#ui design#ux design#supplements#figma design#figma ui
1 note
·
View note
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
Text

Kim Possible Webcore Y2K
#2000s#00s#art#blue#cartoon#childhood#cybercore#cyber y2k#design#disney#graphic design#graphics#illustration#kaybug#kim possible#old internet#old web#tech#screenshot#technology#uidesign#ui#ui ux design#webcore#website#y2kcore#y2kore#y2k aesthetic#y2k core#y2k cyber
212 notes
·
View notes
Text

"Aquatix" website template
#art#blue#design#fish#frutiger aero#graphic design#graphics#helvetica aqua aero#internet#template#uidesign#ui#ui ux design#water#webcore#website
58 notes
·
View notes
Text



BarbieGirls Website
#2000s#00s#art#barbie#fashion#girly#graphic design#graphics#internet#old internet#old web#pink#screenshots#ui ux design#webcore#website#vectorbloom
120 notes
·
View notes
Text
JavaScript Fundamentals
I have recently completed a course that extensively covered the foundational principles of JavaScript, and I'm here to provide you with a concise overview. This post will enable you to grasp the fundamental concepts without the need to enroll in the course.
Prerequisites: Fundamental HTML Comprehension
Before delving into JavaScript, it is imperative to possess a basic understanding of HTML. Knowledge of CSS, while beneficial, is not mandatory, as it primarily pertains to the visual aspects of web pages.
Manipulating HTML Text with JavaScript
When it comes to modifying text using JavaScript, the innerHTML function is the go-to tool. Let's break down the process step by step:
Initiate the process by selecting the HTML element whose text you intend to modify. This selection can be accomplished by employing various DOM (Document Object Model) element selection methods offered by JavaScript ( I'll talk about them in a second )
Optionally, you can store the selected element in a variable (we'll get into variables shortly).
Employ the innerHTML function to substitute the existing text with your desired content.
Element Selection: IDs or Classes
You have the opportunity to enhance your element selection by assigning either an ID or a class:
Assigning an ID:
To uniquely identify an element, the .getElementById() function is your go-to choice. Here's an example in HTML and JavaScript:
HTML:
<button id="btnSearch">Search</button>
JavaScript:
document.getElementById("btnSearch").innerHTML = "Not working";
This code snippet will alter the text within the button from "Search" to "Not working."
Assigning a Class:
For broader selections of elements, you can assign a class and use the .querySelector() function. Keep in mind that this method can select multiple elements, in contrast to .getElementById(), which typically focuses on a single element and is more commonly used.
Variables
Let's keep it simple: What's a variable? Well, think of it as a container where you can put different things—these things could be numbers, words, characters, or even true/false values. These various types of stuff that you can store in a variable are called DATA TYPES.
Now, some programming languages are pretty strict about mentioning these data types. Take C and C++, for instance; they're what we call "Typed" languages, and they really care about knowing the data type.
But here's where JavaScript stands out: When you create a variable in JavaScript, you don't have to specify its data type or anything like that. JavaScript is pretty laid-back when it comes to data types.
So, how do you make a variable in JavaScript?
There are three main keywords you need to know: var, let, and const.
But if you're just starting out, here's what you need to know :
const: Use this when you want your variable to stay the same, not change. It's like a constant, as the name suggests.
var and let: These are the ones you use when you're planning to change the value stored in the variable as your program runs.
Note that var is rarely used nowadays
Check this out:
let Variable1 = 3; var Variable2 = "This is a string"; const Variable3 = true;
Notice how we can store all sorts of stuff without worrying about declaring their types in JavaScript. It's one of the reasons JavaScript is a popular choice for beginners.
Arrays
Arrays are a basically just a group of variables stored in one container ( A container is what ? a variable , So an array is also just a variable ) , now again since JavaScript is easy with datatypes it is not considered an error to store variables of different datatypeslet
for example :
myArray = [1 , 2, 4 , "Name"];
Objects in JavaScript
Objects play a significant role, especially in the world of OOP : object-oriented programming (which we'll talk about in another post). For now, let's focus on understanding what objects are and how they mirror real-world objects.
In our everyday world, objects possess characteristics or properties. Take a car, for instance; it boasts attributes like its color, speed rate, and make.
So, how do we represent a car in JavaScript? A regular variable won't quite cut it, and neither will an array. The answer lies in using an object.
const Car = { color: "red", speedRate: "200km", make: "Range Rover" };
In this example, we've encapsulated the car's properties within an object called Car. This structure is not only intuitive but also aligns with how real-world objects are conceptualized and represented in JavaScript.
Variable Scope
There are three variable scopes : global scope, local scope, and function scope. Let's break it down in plain terms.
Global Scope: Think of global scope as the wild west of variables. When you declare a variable here, it's like planting a flag that says, "I'm available everywhere in the code!" No need for any special enclosures or curly braces.
Local Scope: Picture local scope as a cozy room with its own rules. When you create a variable inside a pair of curly braces, like this:
//Not here { const Variable1 = true; //Variable1 can only be used here } //Neither here
Variable1 becomes a room-bound secret. You can't use it anywhere else in the code
Function Scope: When you declare a variable inside a function (don't worry, we'll cover functions soon), it's a member of an exclusive group. This means you can only name-drop it within that function. .
So, variable scope is all about where you place your variables and where they're allowed to be used.
Adding in user input
To capture user input in JavaScript, you can use various methods and techniques depending on the context, such as web forms, text fields, or command-line interfaces.We’ll only talk for now about HTML forms
HTML Forms:
You can create HTML forms using the <;form> element and capture user input using various input elements like text fields, radio buttons, checkboxes, and more.
JavaScript can then be used to access and process the user's input.
Functions in JavaScript
Think of a function as a helpful individual with a specific task. Whenever you need that task performed in your code, you simply call upon this capable "person" to get the job done.
Declaring a Function: Declaring a function is straightforward. You define it like this:
function functionName() { // The code that defines what the function does goes here }
Then, when you need the function to carry out its task, you call it by name:
functionName();
Using Functions in HTML: Functions are often used in HTML to handle events. But what exactly is an event? It's when a user interacts with something on a web page, like clicking a button, following a link, or interacting with an image.
Event Handling: JavaScript helps us determine what should happen when a user interacts with elements on a webpage. Here's how you might use it:
HTML:
<button onclick="FunctionName()" id="btnEvent">Click me</button>
JavaScript:
function FunctionName() { var toHandle = document.getElementById("btnEvent"); // Once I've identified my button, I can specify how to handle the click event here }
In this example, when the user clicks the "Click me" button, the JavaScript function FunctionName() is called, and you can specify how to handle that event within the function.
Arrow functions : is a type of functions that was introduced in ES6, you can read more about it in the link below
If Statements
These simple constructs come into play in your code, no matter how advanced your projects become.
If Statements Demystified: Let's break it down. "If" is precisely what it sounds like: if something holds true, then do something. You define a condition within parentheses, and if that condition evaluates to true, the code enclosed in curly braces executes.
If statements are your go-to tool for handling various scenarios, including error management, addressing specific cases, and more.
Writing an If Statement:
if (Variable === "help") { console.log("Send help"); // The console.log() function outputs information to the console }
In this example, if the condition inside the parentheses (in this case, checking if the Variable is equal to "help") is true, the code within the curly braces gets executed.
Else and Else If Statements
Else: When the "if" condition is not met, the "else" part kicks in. It serves as a safety net, ensuring your program doesn't break and allowing you to specify what should happen in such cases.
Else If: Now, what if you need to check for a particular condition within a series of possibilities? That's where "else if" steps in. It allows you to examine and handle specific cases that require unique treatment.
Styling Elements with JavaScript
This is the beginner-friendly approach to changing the style of elements in JavaScript. It involves selecting an element using its ID or class, then making use of the .style.property method to set the desired styling property.
Example:
Let's say you have an HTML button with the ID "myButton," and you want to change its background color to red using JavaScript. Here's how you can do it:
HTML: <button id="myButton">Click me</button>
JavaScript:
// Select the button element by its ID const buttonElement = document.getElementById("myButton"); // Change the background color property buttonElement.style.backgroundColor = "red";
In this example, we first select the button element by its ID using document.getElementById("myButton"). Then, we use .style.backgroundColor to set the background color property of the button to "red." This straightforward approach allows you to dynamically change the style of HTML elements using JavaScript.
#studyblr#code#codeblr#css#html#javascript#java development company#python#study#progblr#programming#studying#comp sci#web design#web developers#web development#website design#ui ux design#reactjs#webdev#website#tech
400 notes
·
View notes
Photo
Coming in to play! (Patreon)
#Doodles#Webkinz#Webkinz hours! The cute lads have wedged their way back to the forefront of my mind haha#I'm honestly really glad I kept all my Webkinz plush over time and they've survived all the moves and whatnot#Some are still missing - most notably my horses for some reason - but I have the rest onhand and they're still cute and soft and I love them#Getting the opportunity to name and play with them as a young'un made them stick quite strongly in my mind ♪#And I still find some of my design sensibilities with their roots in the gameplay/game design/UI design/interactivity#I think it inspired some of my Video Game Design brain which is an aspect of myself I'm quite happy with :D#And I /love/ plushies probably now more than ever <3 So I'm doubly glad younger me didn't get rid of them haha#Got my lineup that featured in Tala's Requestober this year ♥ I left out a couple for what are probably obvious reasons ahem ahem#If you haven't seen what the Official design of the clownfish is in Webkinz... The plushy is arguably worse lol why that one of all of them#Hire me to design Webkinz fish I dare you#There are actually several cute fish - and several ugly ones! Lol I don't know why they're so inconsistent#It's not like the differences between Signature and Classic! Most of the fish are Classic or eStore! I don't know what gives lol#Anyway lol the other one I left out was my Night Mare since I couldn't remember his name either - which is a shame! I liked him#I still have some fairly clear memories of playing Webkinz with those lads <3 Of the different rooms and relationships and games#It's nostalgic! It's nice to reminisce on something so cheery and cute and light and fluffy :)#As for the rest hehe - I tend to pick up 'kinz whenever I find them at secondhand shops and the like - much like Lalaloopsies#They're out of production! Harder to find - rare and valuable haha totally#I haven't found any New With Tags so far but I'm on the hunt still!! Someday it'll be my turn...#But I Have found some really adorable fellows for cents on the dollar haha <3 Two Blue Whales and a Sheep and Duck!! So cute#My latest find was a Lil'kinz Lioness Cub and she is - So tiny <3 Really adorably constructed with a fluffy nose ahhh ♪#The Long Eared Bunny is my current Free 'kinz! I unfortunately lost the account with Baaby so I had to start over again but that's alright#This time I've got Embroidery and she's in a closet cosplay of Edgar haha - black-and-grey striped shirt with dark pants and round glasses#And angel wings! I was able to snag those from the Ganz website and they're perfect honestly haha ♥ She won an Open Beauty Pageant with it!#Couple of her with Sugar - my first Webkinz I got to play with since Diamond's tag was thrown away :') Sugar's my oldest 'kinz <3#And of her with smol's Free 'kinz since I convinced her to play with me off and on haha - her Leonberger named Borgus :D#And then one final one of what I'd really like - a Webkinz Spider ;;♥ I /know/ they've made spider objects that are really cute!#And April Fools' fake pets of a spider!! Give me the fluffy spider please Ganz even if there's no plushie I just need to pet the spider
21 notes
·
View notes
Text
Having loud thoughts again, but you know what would be an absolutely baller idea for tumblr's layout? Everything being a full widget system, especially on the dashboard. I'm just using this as an example, but the old UI for deviantart, dated as it is now by website standards visually, worked off a widget like system where you had so much control over how your profile page was displayed. Certain elements/boxes could be dragged and placed on your page and then adjusted via preset options or through a bit of light coding shenanigans. Imagine that, but with the tumblr dashboard. Instead of being stuck in just one format, you could drag your navigation bar to the left or right or if you don't like that you could pull it up top instead. Or you could have a widget on the side bar like xkit does for tag tracking, or trending tags or just not have any of that on the dashboard. Or how about a widget purely to keep track of recent mutuals that will take you directly to a full list in one click or a widget listing your current que ect ect. All of these being movable pieces yeah? The main point being the ability for a user to rearrange their dashboard to their liking for the best personal navigation with the least amount of clicks. I think the idea of drag and dropping UI elements is taken for granted on most current social media sites even though it's extremely intuitive once you understand it's a feature that exists and how clunky things feel when you don't have it or it's taken away. There's personal website builders that already use widgets pretty frequently, so why not extend that to bigger websites that rely on plenty of consistent user navigation daily? Like imagine updates that could be about adding in highly requested new widgets or adjusting functionality of current widgets to perform better based on user feedback. I am not a coder so I don't know how difficult it would be to implement a robust widget system for a large scale social media website, but it's been on my mind for years now with trying out all kinds of beta art sites before. I really think something like that would be worth the investment for a place like tumblr and potentially cut down on a lot of discontent over layout changes.
#tumblr#tumblr layout#tumblr dashboard#dashboard#tumblr ui#ui design#ux desgin#personal#personal ramblings#long post#I think about this A LOT in some of my friend groups#talking about failed or struggling art websites mostly#widgets are so dope and they should be the standard for desktop layouts
121 notes
·
View notes
Text

Habillage Graphique
#Habillage Graphique#design#studio#France#portfolio#black and white#typographic#typography#type#typeface#font#Neue Montreal#UI system sans#2024#Week 30#website#web design#inspire#inspiration#happywebdesign
11 notes
·
View notes
Text
Create a Pro Construction Site with TNC Webflow Website Template
The TNC Handyman Webflow Construction Website Template is a modern, responsive solution tailored for professionals in the construction and handyman industry. Designed for easy customization, this template helps businesses establish a strong digital presence, build trust, and attract more clients with minimal effort.
Who Uses This Template?
Handyman Service Providers Independent handymen and small teams use this template to present their services clearly and professionally, helping them stand out in a competitive local market.
Construction Companies Small to mid-sized construction businesses choose this template to showcase their projects, services, and credentials effectively.
Renovation Experts Those specializing in home and commercial renovations find this template ideal for highlighting their transformations through images and case studies.
Plumbers and Electricians Tradespeople use the template to display service lists, rates, and contact details, making it easier for customers to hire them online.
Property Maintenance Firms Companies offering ongoing property repair and maintenance services benefit from the structured layout and service-specific pages.
General Contractors Contractors use the template to showcase capabilities, completed projects, and client testimonials, enhancing credibility and trust.
Why Use TNC Handyman?
Quick Setup and Customization The template offers pre-built pages and sections, letting you set up a professional website fast without advanced coding knowledge.
Responsive on All Devices It ensures a smooth browsing experience on desktops, tablets, and smartphones, helping you reach clients everywhere.
SEO-Ready Design Built with best SEO practices, the template helps your site rank better on search engines, driving more organic traffic.
Modern, Clean Aesthetic Its minimal yet modern design builds trust and presents your brand as professional and reliable.
Webflow CMS Integrated You can easily update services, projects, and blog posts using the Webflow CMS without touching code.
Optimized for Conversion The template’s call-to-action buttons, contact forms, and clear service sections are designed to generate more leads.
Key Features
🔨 Fully Responsive Layout 🏗️ Modern & Minimal Design 📝 Webflow CMS Functionality 📸 Project Gallery Showcase 💬 Client Testimonials Section 📞 Built-in Contact Forms
Benefits of TNC Handyman
Stronger Online Presence This template provides all the tools to help your business stand out online, ensuring your services are visible to potential clients.
Time-Saving Solution Pre-designed pages and components allow you to launch quickly, saving hours of design and development time.
Attracts More Clients With clear calls to action and service highlights, the template helps convert visitors into customers.
Showcase Your Work The project gallery lets you present past work, building credibility and helping clients see the quality of your services.
Easy Maintenance Updating your website is simple with Webflow CMS, so you can keep content fresh without technical help.
Boosts Credibility A professionally designed site helps reinforce your brand’s reliability, encouraging visitors to choose your business.
Final Word
The TNC Handyman Webflow Construction Website Template is the ideal choice for tradespeople and contractors looking to grow their business online. With its clean design, powerful features, and ease of use, it provides everything you need to make a lasting impression and generate more leads.
2 notes
·
View notes
Text
the internet is so boring lately, probably because all of the good content is paywalled and websites that aren’t social networks are basically nonexistent
#i yearn for a beautifully curated website with varied content themes that only exists in my head#i yearn for a grown up rookie mag#i yearn for better ux and ui design that makes academic content more accessible to the masses#my dreams… are big yet honest🥺
6 notes
·
View notes
Text
Website for the movie Sphere (1998)
#98#90s#1998#1990s#art#blue#cybercore#cyber y2k#design#film#future#futuristic#futurism#graphic design#graphics#green#internet#kaybug#movies#old internet#old web#screenshot#sphere#uidesign#ui#ui ux design#webcore#website#y2kcore#y2kore
36 notes
·
View notes
Text
gra-Fi-KAS in 2003
#2003#2000s#art#design#frutiger aero#frutiger metro#gra-fi-kas#graphic design#graphics#illustration#internet#old internet#old web#queuetiger#screenshot#ui#vector#webcore#website
39 notes
·
View notes
Text
The Living Museum - An Imagined Botanical Garden
The Living Museum is a branding project for an imagined botanical garden. I created an animation for the logo, a website prototype, and products that are on the website. The overall concept of the botanical garden is to encourage people to take care of the Earth.
Click through the website here! (it's at the bottom of the page)
#awkwardly enchanted#website design#ui ux design#logo design#graphic design#digital illustration#logo animation#brown aesthetic#plant aesthetic#adobe xd#adobe illustrator#black artist#clothing design
3 notes
·
View notes