Today we are going to Draw Dog using CSS, we will use HTML to structure the page and then use CSS to design the look, feel, and color of the page.
Code to draw dog using CSS
HTML code:
!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> <title>Puppy Face</title> </head> <body> <h1 class="heading">Puppy Face</h1> <div class="cartoon"> <div class="ear"></div> <div class="ear"></div> <div class="collar"></div> <div class="head"> <div class="tongue"></div> <div class="line"></div> <div class="snout"></div> <div class="snout"></div> <div class="nose"></div> <div class="eye"></div> <div class="eye"></div> </div> </div> </body> </html>
CSS code:
.heading { font-size: 3em; font-weight: 700; margin: 50 px; text-align: center; font family: 'Oswald', sans-serif; color: #b86d29; } .cartoon { width: 90vmin; aspect-ratio: 1; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); overflow: hidden; } .cartoon *, .cartoon *::before, .cartoon *::after { position: absolute; box-sizing: border-box; } .cartoon { --bg: #fff; --skin1: #fff; --skin2: #b86d29; } .head { width: 50%; height: 52%; border: 1.5vmin solid; border-radius: 100% / 70% 80% 124% 120%; /* border-bottom: 1vmin solid; var(--skin1); */ border-top: 1.25vmin solid; top: 10%; left: 50%; transform: translateX(-50%); background: radial-gradient(100% 200% at 47% -10.5%, var(--skin1) 15%, #0000 0), radial-gradient(at 80% -20%, var(--skin2) 30%, #0000 0), radial-gradient(at 3% 30%, var(--skin2) 30%, #0000 0); background-color: var(--skin1); overflow: hidden; } .nose { width: 25%; height: 12%; background: radial-gradient(at 20% 25%, #fff 10%, #0000 0); background-color: #000; border-radius: 70% / 30% 30% 120% 120%; top: 63%; left: 50%; transform: translate(-50%, -50%); } .eye { width: 22%; height: 25%; background: #00f; border-radius: 100% / 100%; box-shadow: 0 -0.5vmin 0 0.25vmin, 0 0.5vmin 0 0.25vmin; background: radial-gradient(circle at 35% 50%, #fff 12%, #0000 0), radial-gradient(circle at 49% 40%, #fff 7%, #0000 0), radial-gradient(circle at 50% 60%, #000 20%, #b86d29 21% 40%, #000 41% 45%, #0000 46%); background-color: #fff; top: 23%; left: 15%; transform: rotate(-5deg); } .eye+.eye { left: auto; right: 15%; transform: rotate(5deg); box-shadow: 0 -0.5vmin 0 0.25vmin, 0 0.5vmin 0 0.25vmin, 0 -4vmin 0 5vmin var(--skin2); } .snout { width: 30%; height: 20%; border-radius: 100% / 00% 40% 100% 130%; border: 0.75vmin solid; border-top-color: var(--skin1); top: 63%; left: 50%; transform: translate(-100%); clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%); background: radial-gradient(circle at 20% 40%, #000 5%, #0000 0), radial-gradient(circle at 54% 71%, #000 5%, #0000 0), radial-gradient(circle at 70% 60%, #000 5%, #0000 0), radial-gradient(circle at 50% 50%, #000 7%, #0000 0), radial-gradient(circle at 33% 66%, #000 5%, #0000 0); background-color: var(--skin1); } .snout+.snout { transform: scaleX(-1); left: calc(50% - 0.375vmin); } .line { width: 70%; height: 10%; border: 0.5vmin solid #0000; border-top: 1vmin solid; border-radius: 100%; top: 66.9%; left: 50%; transform: translateX(-50%) rotate(0.25deg); } .tongue { width: 20%; height: 20%; border: 0.7vmin solid; border-bottom: 1vmin solid; background: linear-gradient(#000 0 0) 45% 15% / 8% 50% no-repeat; background-color: #b86d29; border-radius: 0 0 10vmin 10vmin; left: 50%; top: 73%; transform: translate(-50%, 0) rotate(5deg); } .collar { width: 33%; height: 25%; border-radius: 100% / 50%; background: #b86d29; border: 0.8vmin solid; border-bottom: 1vmin solid; top: 47%; left: 50%; transform: translate(-50%, 0); } .ear { width: 30%; height: 40%; background: #b86d29; border-radius: 120% 50%; border: 1vmin solid; border-left: 1.25vmin solid; top: 13%; left: 13%; } .ear+.ear { left: auto; right: 15%; top: 13%; transform: scaleX(-1) rotate(20deg); border-radius: 50%; @keyframes float { 0%, 100% { transform: translate(0, -110%); } 50% { transform: translate(0, -125%); } }
Output:
I hope this was easy to understand and that you enjoyed building and learning this at the same time, we learned to draw a simple puppy face using HTML and CSS.
Thank you for visiting our website.
Also Read:
- What is web development for beginners?
- Chat App with Node.js and Socket.io
- Draw Doraemon using HTML and CSS
- Draw House using HTML and CSS
- Draw Dog using CSS
- Rock Paper Scissor in HTML CSS JavaScript
- Pong Game in HTML and JavaScript
- Tip Calculator in HTML and JavaScript
- Calculator in HTML CSS JavaScript
- BMI Calculator in HTML CSS JavaScript
- Color picker in HTML and JavaScript
- Number Guessing Game in JavaScript
- ATM in JavaScript
- Inventory Management System in JavaScript
- Courier Tracking System in HTML CSS and JS
- Word Count App in JavaScript
- To-Do List in HTML CSS JavaScript
- Tic-Tac-Toe game in JavaScript
- Music player using HTML CSS and JavaScript
- Happy Diwali in JavaSCript
Also Read:
- What is web development for beginners?
- Chat App with Node.js and Socket.io
- Draw Doraemon using HTML and CSS
- Draw House using HTML and CSS
- Draw Dog using CSS
- Rock Paper Scissor in HTML CSS JavaScript
- Pong Game in HTML and JavaScript
- Tip Calculator in HTML and JavaScript
- Calculator in HTML CSS JavaScript
- BMI Calculator in HTML CSS JavaScript
- Color picker in HTML and JavaScript
- Number Guessing Game in JavaScript
- ATM in JavaScript
- Inventory Management System in JavaScript
- Courier Tracking System in HTML CSS and JS
- Word Count App in JavaScript
- To-Do List in HTML CSS JavaScript
- Tic-Tac-Toe game in JavaScript
- Music player using HTML CSS and JavaScript
- Happy Diwali in JavaSCript