#quicksteps
Explore tagged Tumblr posts
Text
Creating a CSS File in Visual Studio Code: Quick Steps
Introduction
Welcome to our guide on creating a CSS file in Visual Studio Code. CSS (Cascading Style Sheets) is an essential part of web development, allowing you to control the layout and design of your web pages. In this tutorial, we'll walk you through the steps to create and work with CSS files in Visual Studio Code, a popular code editor for web developers. Whether you're a beginner looking to learn the basics of CSS or an experienced developer seeking to streamline your workflow, this guide is here to help. Understanding how to create and manage CSS files is crucial for customizing the appearance of your web projects. By the end of this tutorial, you'll have the knowledge and confidence to create, write, and link CSS files to your HTML documents, ultimately enhancing the visual appeal of your websites. Let's get started!
1. Prerequisites
Before we dive into creating CSS files in Visual Studio Code, there are a few prerequisites you need to have in place. Make sure you have the following elements set up and ready to go: - Operating System: Ensure that you are using a supported operating system such as Windows, macOS, or Linux. Visual Studio Code is compatible with all these platforms, so choose the one that suits your needs. - Visual Studio Code Installed: If you haven't already, download and install Visual Studio Code from the official website. It's a lightweight, free, and open-source code editor developed by Microsoft, known for its flexibility and extensibility. - Basic HTML Knowledge: Having a basic understanding of HTML is essential. You should know how to create an HTML document, structure it, and add elements. This knowledge will be crucial when linking your CSS file to your HTML documents. Once you've ensured that you meet these prerequisites, you're ready to begin your journey into the world of CSS in Visual Studio Code. These basic requirements will set the foundation for creating and working with CSS files effectively.
2. Setting up Visual Studio Code
Before you start working on your CSS files in Visual Studio Code, it's essential to ensure that your code editor is configured correctly for a smooth development experience. Here are the steps to set up Visual Studio Code for CSS development: - Install Visual Studio Code: If you haven't already installed Visual Studio Code, you can download it from the official website (https://code.visualstudio.com/). It's available for Windows, macOS, and Linux, making it a versatile choice for web developers on various platforms. - Extensions for CSS: Visual Studio Code offers a wide range of extensions that can enhance your CSS development workflow. Search for and install extensions like "Live Server," "Auto Rename Tag," and "Prettier" to streamline your CSS development process. - User Settings: Customize your Visual Studio Code environment by adjusting user settings. You can change themes, font sizes, and other preferences to make your coding experience more comfortable and visually appealing. - Workspace Settings: Create a workspace for your project and define specific settings for it. This allows you to have different configurations for various projects, ensuring that you have the ideal environment for your CSS work. Visual Studio Code is known for its user-friendly interface and extensive customization options. With the right extensions and settings in place, you can optimize your workflow for CSS development. Additionally, this code editor's support for various programming languages and integrated terminal make it a powerful tool for web development. Once you've set up Visual Studio Code as per your preferences, you'll be well-equipped to create and manage CSS files efficiently. This step is crucial in ensuring a productive and enjoyable development process. Below is a table summarizing the steps for setting up Visual Studio Code: StepDescription1Download and install Visual Studio Code from the official website.2Explore and install CSS-related extensions to enhance your coding experience.3Adjust user settings to personalize the code editor's appearance and behavior.4Create a workspace and define workspace-specific settings for your projects. With Visual Studio Code set up and ready, you're now prepared to start creating and working with CSS files seamlessly.
3. Creating a New CSS File
Now that you have Visual Studio Code set up, it's time to create your first CSS file. Follow these steps to create a new CSS file in your project: - Open Visual Studio Code: Launch Visual Studio Code on your computer. - Create or Open a Project: You can either create a new project or open an existing one. If you're starting fresh, create a project folder where you'll store your HTML and CSS files for the website you're working on. - Open the Project Folder: In Visual Studio Code, go to File → Open Folder and select the folder where your project is located. - Create a New CSS File: In your project folder, right-click and choose New File. Name the file with a .css extension, e.g., styles.css. - Start Writing CSS: Double-click on the newly created CSS file to open it in the code editor. Now, you can start writing your CSS code to style your web page. Creating a dedicated CSS file is crucial for maintaining a clean and organized project structure. It separates your styling from your HTML content, making it easier to manage and update your website's design. Here's a table summarizing the steps for creating a new CSS file: StepDescription1Open Visual Studio Code on your computer.2Create a new project folder or open an existing one for your website.3Open the project folder in Visual Studio Code.4Create a new CSS file with a .css extension in your project folder.5Open the CSS file in Visual Studio Code and start writing your CSS code. By following these steps, you've successfully created a new CSS file and are ready to apply styles to your web content. The separation of HTML and CSS in different files keeps your code organized and manageable, making it easier to maintain and update your web projects.
4. Writing CSS Code
With your CSS file created, it's time to start writing CSS code to style your web page. CSS is used to define the presentation of your HTML elements, making them visually appealing. Here are the key aspects of writing CSS code: - Selectors: Selectors are used to target HTML elements that you want to style. They can be HTML element names, class names, or IDs. For example, to select all elements, you would use the selector . - Properties: CSS properties define the specific aspects of an element you want to change, such as color, font size, or margin. Properties are followed by a colon and a value, like color: red;. - Values: Values are the assigned settings for the properties. For the property color, values can be specified as a color name (e.g., red) or a hexadecimal code (e.g., #FF5733). - Declaration Blocks: A set of CSS rules that are enclosed in curly braces { } is called a declaration block. It groups together the selector, properties, and values. For example: CSS { color: blue; font-size: 16px; } Here's an example of CSS code that changes the text color of all
elements to blue: CSS h1 { color: blue; }
5. Linking CSS to HTML
Now that you've created your CSS file and written your styles, the next step is to link it to your HTML documents. Linking your CSS to HTML allows the browser to apply your styles to the web page. Here's how you can link CSS to HTML: - Open Your HTML File: Using Visual Studio Code, open the HTML file that you want to apply the CSS styles to. Make sure both your HTML and CSS files are in the same project folder. - Insert the Link Element: Within the section of your HTML document, insert the following code to link your CSS file: HTML - Save Your HTML File: Save your HTML file after adding the link element. The link should now connect your HTML and CSS files, allowing your styles to be applied to the web page. Here's a table summarizing the steps for linking CSS to HTML: StepDescription1Open the HTML file you want to style in Visual Studio Code.2In the section of your HTML file, insert a element that references your CSS file using the rel, type, and href attributes.3Save your HTML file to apply the linked CSS styles to your web page. Linking CSS to HTML is a crucial step in web development as it separates the structure (HTML) from the presentation (CSS) of your web page. This modularity makes it easier to maintain and update your website, as changes in one file won't affect the other. It also allows for better collaboration in larger projects as multiple developers can work on different aspects simultaneously. With your CSS successfully linked to your HTML, you can now see your styles take effect on your web page. You can further refine your styles by targeting specific HTML elements using CSS selectors, and by experimenting with different properties and values to achieve the desired design.
6. Saving and Previewing
After you've created and linked your CSS file to your HTML document, it's essential to save your work and preview the changes in a web browser. This step allows you to see how your styles are affecting the appearance of your web page. Here's what you need to do: - Save Your CSS and HTML Files: Ensure that both your CSS and HTML files are saved in Visual Studio Code. Any unsaved changes will not be reflected in the preview. - Open a Web Browser: Launch a web browser of your choice. Common options include Google Chrome, Mozilla Firefox, or Microsoft Edge. - Preview Your Web Page: In Visual Studio Code, right-click on your HTML file and select "Open with Live Server" if you have the Live Server extension installed. This will open your web page in the browser and automatically refresh as you make changes to your HTML or CSS files. - Manually Refresh (if not using Live Server): If you're not using Live Server, you can manually refresh your web page in the browser after making changes by pressing F5 or clicking the refresh button. Here's a table summarizing the steps for saving and previewing your web page: StepDescription1Save both your CSS and HTML files in Visual Studio Code.2Open a web browser (e.g., Chrome, Firefox, Edge).3Use "Open with Live Server" in Visual Studio Code (if available) or manually refresh your web page to see the updated styles. Previewing your web page in a browser is crucial because it allows you to observe how your CSS styles are rendering in a real-world environment. This step often reveals issues that you might not have noticed while coding. If you encounter any unexpected behavior or errors, return to your Visual Studio Code editor, make the necessary adjustments to your CSS code, save the files again, and refresh the browser to see the updated results. This iterative process is common in web development and helps you fine-tune your designs until they match your vision. Remember that web development is an evolving process, and practice is key to becoming proficient. Regularly preview and refine your work to enhance your CSS skills and create stunning web pages.
7. Advanced CSS Features
As you become more proficient with CSS in Visual Studio Code, you can explore advanced features and techniques that enhance your web design capabilities. These advanced CSS features empower you to create more complex and responsive layouts. Here are some key aspects to consider: - CSS Preprocessors: CSS preprocessors like Sass and Less extend the capabilities of CSS by introducing variables, functions, and nesting. Using a preprocessor can make your stylesheets more maintainable and allow for reusability. To get started with preprocessors, you'll need to install the corresponding extensions in Visual Studio Code and compile your preprocessor code into standard CSS. - Media Queries: Media queries enable you to create responsive designs that adapt to different screen sizes. By specifying different CSS rules for various media types or screen widths, you can ensure that your web pages look and function optimally on a wide range of devices, from desktops to mobile devices. - CSS Frameworks: CSS frameworks like Bootstrap and Foundation provide pre-built, responsive design components and styles. These frameworks can significantly speed up your development process and ensure a consistent and attractive look for your website. To use a CSS framework, you need to include the framework's CSS file in your HTML, and then you can use its classes and components to structure your content and add styling. - Animations and Transitions: CSS allows you to create animations and transitions to make your web pages more engaging. You can use keyframes and transition properties to add effects like fading, sliding, or scaling. With these techniques, you can create interactive and visually appealing elements on your website. These advanced CSS features open up a world of possibilities for creating modern and dynamic web designs. By mastering these concepts, you can take your web development skills to the next level and build websites that are not only aesthetically pleasing but also highly functional and user-friendly. Remember to explore and practice these advanced CSS features gradually. Start with the one that best suits your current project and progressively incorporate more techniques into your web development toolkit. The combination of a well-configured Visual Studio Code and a solid understanding of advanced CSS will enable you to create impressive and interactive web experiences for your users. Websites for free HTML & CSS templates:◉ uideck - https://t.co/CwFDNG2tCg◉ free-css - https://t.co/whAWPtPsiR◉ splawr .com - https://t.co/0wGOimKzBD◉ onepagelove - https://t.co/3OoqGpTq2K◉ tooplate - https://t.co/HhPldbSsrd◉ nicepage- https://t.co/gL8CrjVSGc… pic.twitter.com/rMNNdQO5bc— Rizwan (@mdrizwanalam72) November 4, 2023
FAQ
Here are some frequently asked questions about creating and working with CSS files in Visual Studio Code: - What is Visual Studio Code? Visual Studio Code, often referred to as VS Code, is a free and open-source code editor developed by Microsoft. It is widely used by web developers for its extensibility, rich feature set, and cross-platform compatibility on Windows, macOS, and Linux. - Do I need to be an expert in HTML to work with CSS in Visual Studio Code? While having a basic understanding of HTML is helpful, you don't need to be an expert. You can start learning and working with CSS in VS Code with even a minimal knowledge of HTML. As you progress, you can build on your HTML skills. - What are CSS preprocessors, and should I use them? CSS preprocessors like Sass and Less are tools that extend CSS with features like variables and nesting. Using preprocessors can make your code more maintainable and efficient. They are especially beneficial for larger projects, but you can choose to use them based on your specific needs and preferences. - How can I create responsive designs using CSS? To create responsive designs, you can use media queries in your CSS. Media queries allow you to apply different styles based on factors like screen width or device type. This ensures that your website adapts to various screen sizes and maintains a consistent user experience. - Are there any recommended CSS frameworks for beginners? CSS frameworks like Bootstrap and Foundation are popular choices for beginners and experienced developers alike. They provide pre-built design components and styles that can save you time and effort. You can start with one of these frameworks to kickstart your projects. - How can I troubleshoot CSS issues in Visual Studio Code? When encountering CSS issues, you can use the integrated tools and extensions in Visual Studio Code for debugging. Check for syntax errors, use the browser's developer tools to inspect and modify elements, and refer to online resources and communities for help with specific problems. These frequently asked questions cover some of the common queries you may have while working with CSS in Visual Studio Code. As you gain more experience, you'll discover additional questions and solutions that pertain to your specific projects and challenges.
Conclusion
Congratulations! You've completed our guide on creating and working with CSS files in Visual Studio Code. You've gained the essential knowledge and skills required to style web pages, enhance their visual appeal, and create a more immersive user experience. Let's recap the key takeaways from this tutorial: - Prerequisites: Before diving into CSS, ensure that you have the necessary prerequisites in place, including Visual Studio Code, a compatible operating system, and a basic understanding of HTML. Read the full article
0 notes
Text
Effizientes E-Mail-Management in Outlook: QuickSteps für automatisierte Abläufe
Sehr geehrte Outlook-Anwender, haben Sie sich jemals gewünscht, Ihren Posteingang in Outlook effizienter zu organisieren? Möchten Sie E-Mails, die Sie bereits bearbeitet haben, automatisch in den Ordner “Erledigt” verschieben und gleichzeitig als erledigt markieren lassen? In diesem Artikel werde ich Ihnen zeigen, wie Sie genau das mit Hilfe von QuickSteps in Outlook erreichen können. Hierzu…
View On WordPress
0 notes
Text
little doodle of my tarnished! I was going to doodle more but tbh i just want to play more elden ring instead hahah
#my art#tarnished#my... tarnishedsona you could say#it's my first time playing elden ring and it's my first souls game too! it's tough but so much fun#im a high dex low everything else build hahah. hit fast hit hard and quickstep out of the way!!!
267 notes
·
View notes
Text
Horses<3
Notes under cut 👇
#the hollow#the hollow netflix#the hollow adam#the hollow reeve#the hollow mira#the hollow kai#the hollow skeet#the hollow vanessa#mlp#my little pony#LOL !<3#Yes Skeet aka quickstep is femme here she is transfem to me ANYWAYS....#my unfortunate art#:3#design#Yes this has a golden filter on it.... cope. it makes jt look more cohesive <3#erased Kais notes on acident. OH WELL!!
165 notes
·
View notes
Text
57 notes
·
View notes
Text
The Muppet Show (1976-1981)
#the muppet show#animal#dance#at the dance#quickstep#dancing#ballroom dancing#crash#the muppets#muppet#muppets#jim henson#gif#muppet gif#muppets gif#gifs of puppets
139 notes
·
View notes
Text
I don’t think micolash gets enough credit for being one of the funniest bosses in fromsoft history. You enter his area after a boss fight with a massive creature made of limbs. entering his area requires touching the corpse and going inside its brain. the area is like a massive poison swamp except instead of gradually being poisoned if you’re out in the open for too long you lose like 90% of your health.
surely this boss is super cool and dangerous with all that build up. No. He’s a batshit insane scrawny wimp wearing a chastity cage on his head and spends the entire fight 1) running away from you 2) getting cornered and throwing really bad punches, a move that is easily sidestepped, and a move that can one shot you if you haven’t invested heavily in health 3) running away again 4) repeat step 2. He makes fun of you howls/moans?? & then when he dies he cries about how he’s going to wake up and forget everything not knowing he’s dead in the real world. The most pathetic boss of all time.
#his boss fight didn’t piss me off like it did for other ppl because I 1) already knew how to corner him 2) found call beyond rlly easy to#dodge. u just quickstep towards him when he starts doing it.#micolash’s lore in general is so fucking funny#big fan of Redgrave just going ‘micolash is batshit crazy’#bloodborne
664 notes
·
View notes
Text
WINDCLAN
BRIARTHORN (48m, he/??) - a dusty brown cat with pale green eyes. windclan's second healer, and only surviving one as far as he knows. a little lackadaisical about the epidemic, but knows herbs.
QUICKSTEP (38m, he/him) - an unusually gangly pale sandy tom. longtime best friend of briarthorn, in a particular kind of way. very energetic, to a detriment.
WINDCLAN was the last clan to experience the epidemic, and for some time assumed they were immune. the choice to send a healer was contentious within the clan, but ultimately briarthorn volunteered to go— which meant quickstep had to as well.
#if you see me finagle the ages later no you didnt...#quickstep & briarthorn are like when zoos give a cheetah a golden retriever#do not separate them#warriors comic#warriors fandom#warrior cats#warriors fanart#warriors oc#erin hunter warriors#warriors clangen#warriors designs#clan gen comic#clangen#clan gen oc#clan gen art#clan generator
26 notes
·
View notes
Text
i can see ALL the re-used fromsoft animations
30 notes
·
View notes
Video
youtube
Puttin' on the ritz - Good Omens version
When I saw Layton and Nikita dancing the quickstep to 'Puttin' on the Ritz' on Strictly come dancing in their beige and black trousers, my mind wandered to Good Omens, (naturally). So by the time the dance finished, all I could see was Aziraphale and Crowley dancing and having the time of their lives. Which gave me an idea.
So, with nearly 400 individually drawn and coloured frames later using the rotoscoping technique, edited using free programs and an embarrassing amount of hours of work. (I have a new found respect for animators now!) here is my silly little animation! I hope you enjoy and it puts a smile on your face!
I may tidy it up in the future, or I might leave it as it is... I’m working on 4 or 5 animatics at the moment so we’ll see. Haha! Too many ideas, not enough time!
- Music by George Porter
- Background from Good Omens Season 2 ‘Before the beginning’ scene
- Rotoscoped from Layton and Nikita’s dance on Strictly
#youtube#good omens#animation#dance#quickstep#good omens animation#good omens video#aziracrow#aziraphale#crowley#ineffible husbands#rotoscoping#ktkellart#ktkell art
68 notes
·
View notes
Text
groupama fdj how many riders are you sending to the men's french national road race championships?
marc madiot:
#cycling#french national championships#it's like alpecin/quickstep at the belgian nattys#<- wait i'm pretty sure alpecin-quickstep was an actual team though with the ever spinning belgian sponsor hamster wheel
24 notes
·
View notes
Text
14 notes
·
View notes
Text
guys the rumba will ACTUALLY be the death of meeeeee
9 notes
·
View notes
Text
Dancing with the Stars Season 33 Week 2: Sending Off an Ingrate and a Shocker
Work is still awful, but I need to come on here to talk to you all about the show this week. A lot happened and we need to discuss. I'm gonna rank the stars based on my enjoyment of each performance (mostly) combined with how I feel they may fare with votes. But before that, let's address the elephant in the room. That elimination. So first of all, I was SHOCKED to see Tori Spelling out in the first week. Was she amazing? No. But I think she did enough to cement a third week. I guess I underestimated the fact that she seems to be really disliked. Because between being a part of Beverly Hills 90210, being the daughter of Aaron Spelling and being constantly talked about for decades at this point, I thought she was gonna be around til week 5 at least. Y'all know it takes a lot to shock me with regard to this show. The double did her in and that's why I always hate double eliminations in week 1. It always takes out one person that maybe needs a little more time to get going. As for Anna? Well it was expected. What I wasn't expecting was her parting words. I feel for Ezra mostly, because that man was riding for her since the day he met her. He took amazing care of her and I know it was hard for him to see the heat she was taking. And you're telling me she couldn't even thank him for showing her that she was more than her crime. Or CAI who tried uplifting the past two weeks? What a waste. Even I didn't go in like I could've and really wanted to because I think people deserve a second chance after committing certain crimes (not drugging, murder, sexual assault, trafficking and your third time physically assaulting someone).She played in all of our faces. You know who I don't feel bad for? Conrad and the rest of the producers for DWTS. I said on twitter, "play stupid games, win stupid fucking prizes". She got on that show, on that platform that y'all gave her and bent over backwards to make it work for her, just for her to spit in your faces and tell y'all that y'all ain't shit, ain't been shit and will never be shit. And honestly, that's the one positive thing I can take from her response. Showing them that they are fools for casting her was great. Hate that this show has fallen so far that someone can say that and the show deserves it. Alright, let's get into these couples:
Top Four
Chandler and Brandon might be my favorite partnership in quite some time. They work well together. Chandler is an incredible dancer with the most gorgeous movement quality. And Brandon is creating some great dances. That was a beautiful rumba. I want them to go far. I think they can go far. I don't want another Tinashe situation to happen. But so far, they are doing exactly what they need to do.
Stephen and Rylee are super fun to watch together. They mesh well and Rylee is definitely choreographing some good numbers that showcase Stephen extremely well. I have a concern though. Stephen is a very awkward mover. That was super obvious in this paso. His hips and shaping looked strange. His footwork made me scratch my head. It was a little strange. His timing is still a bit off. He's got a lot of potential, but they really need to work on finetuning these dances. I can see this being a bigger problem in the more fluid Latin dances and the Argentine tango.
Ilona and Alan are just so much fun. I'm glad Ilona let her guard down a bit more this week. She wasn't moving as small in this salsa and really settled into and owned her sexy more. I love that Alan added a couple of lifts for her as it may have helped her feel more comfortable. She has a ton of potential too and I'm super excited to see their dances once she really lets loose. I actually feel like she might shine in a ballroom dance. I know they have that coming up next.
Dwight and Daniella actually did a great job with the foxtrot. Dwight really really wants to do well and you can tell. He is paying so much attention to the details. He connects his moves. He finishes his lines. And he really handles Daniella with so much care. Two things though. I know that the height difference definitely affects this, but he's gotta work on tucking his butt under him. Second is the footwork needs to be cleaned up.
Middle of the Pack
Joey and Jenna made a believer out of me this week. He is definitely one to watch for sure. He is charming. He seems to be a fast learner. He has great movement quality, especially for a man this early on in the competition. He's still gotta work on his hip action. It isn't natural. Once he get that figured out, I'm a little scared about how good those Latin dances will be. Because this rumba was really really nice.
Danny and Witney are my dark horses of the season. Danny is light on his feet and he stays on time (mostly). Witney is doing great choreography and his technique in this jive was great. I still want him to loosen up more, but I can tell that he made a big shift from week 1 to week 2 in comfortability and confidence. These two, as well as the 5 above them, have me super excited for this season. I can't remember the last time I was this genuinely excited for 6 different couples in one season.
Phaedra and Val are interesting to me. I don't think Phaedra is very good. And I don't think Val is choreographing to her dance strengths that well. That section of their foxtrot that was super fast exposed A LOT of Phaedra's technical setbacks. She was super hoppy. That said, I like their partnership. Phaedra is a larger than life personality, so she makes up for the lack of ability with her performance. I want Val to slow things down though. I think that would better suit her at this point.
Jenn and Sasha are an interesting couple. While Jenn handled some of the production issues like a pro, some of the choreographic choices were a choice. I do not understand why there was a cartwheel thrown into this dance. Or jumps and side by side choreography? I'm cool with that stuff being thrown into quicksteps, but a tango? Why? And why are we using these types of songs for tangos while we're at it? There are so many movies that have been nominated for Oscars that have actual tango music in them. Moulin Rouge comes to mind immediately. I feel like that could've forced Sasha to not make stupid choreography decisions. So this is what I'm going to say. Jenn is a good dancer. A lot of her undoing and early departure (because I'm feeling a "shocking" elimination from her) will be due to his choreography. Because again, why?
Bottom Three
So I'm just going to make this easy for these three. Eric and Reginald are both terrible. There's really not much that either Britt or Emma can do for either one of them at this point. They really won't get all that much better, if at all. In fact, I can see both of them getting worse as the season goes on. The one thing I can say is that they both improved this week.
Brooks and Gleb are interesting. Brooks is good. But that quickstep was not it and Gleb is relying way too much on this STUPID SHOWMANCE that they keep trying to shove down our throats. We're TIRED! It sickens me to my core. The fact that Derek clocked that they did a tango hold instead of the correct hold lets me know exactly where his priorities are. So I say that it's time for us to take a stand. We have to stand against showmances on this show. We gotta let these folks know that we are TIRED. We are not stupid. You cannot play us for fools. I'm ready for them to GO!
So that's it. No show this week. Two shows next Monday and Tuesday. Let me know your thoughts and I will talk to you all soon.
#dancing with the stars#dwts#jenn tran#eric roberts#danny amendola#anna delvey#chandler kinney#reginald veljohnson#stephen nedoroscik#joey graziadei#phaedra parks#tori spelling#dwight howard#brooks nader#ilona maher#alan bersten#gleb savchenko#daniella karagach#pasha pashkov#val chmerkovskiy#jenna johnson#rylee arnold#emma slater#brandon armstrong#ezra sosa#witney carson#britt stewart#sasha farber#quickstep#rumba
8 notes
·
View notes
Text
youtube
Sarah and Vito | Quickstep - 9 to 5, Dolly Parton
Score: 8,8,7,7 (30)
6 notes
·
View notes
Text
SOQ pivoting to the soudal t-rex sealant branding for the vuelta and immediately going dinomode is so funny
*wolfpack voice* but do YOU have a william junior lecerfosaurus
9 notes
·
View notes