Calculator Tools Calculator Tools
Create

Emoji Face

Dec 17, 2023

About this app

A cool app that displays a detailed face emoji in SVG format.

Emoji Face

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Emoji Face</title>
<meta name="description" content="A cool app that displays a detailed face emoji in SVG format.">
<meta name="keywords" content="emoji, face, SVG, cool app">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {

});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
#emoji-face {
width: 200px;
height: 200px;
background-color: yellow;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.eye {
width: 50px;
height: 50px;
background-color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 10px;
}

.eye-left {
transform: translateX(-20px);
}

.eye-right {
transform: translateX(20px);
}

.mouth {
width: 100px;
height: 100px;
background-color: red;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
top: 20px;
}

.tooth {
width: 15px;
height: 30px;
background-color: white;
position: absolute;
bottom: 0;
}

.tooth-left {
left: 25px;
transform: rotate(10deg);
}

.tooth-right {
right: 25px;
transform: rotate(-10deg);
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
<div id="emoji-face">
<div class="eye eye-left"></div>
<div class="eye eye-right"></div>
<div class="mouth">
<div class="tooth tooth-left"></div>
<div class="tooth tooth-right"></div>
</div>
</div>
</div>
</body>
</html>