Calculator Tools Calculator Tools
Create

Pior Língua do Mundo

Sep 18, 2023

About this app

Descubra por que o inglês é considerado a pior língua do mundo.

Pior Língua do Mundo

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>Pior Língua do Mundo</title>
<meta name="description" content="Descubra por que o inglês é considerado a pior língua do mundo.">
<meta name="keywords" content="pior língua, inglês, mundo">

<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">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" 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() {
// Change the background color to a fun color
document.body.style.backgroundColor = "#FFD700";

// Display the message about English being the worst language
var mainContainer = document.getElementById("main-container");
mainContainer.innerHTML = "<h1 class='text-center'>Pior Língua do Mundo</h1>" +
"<p class='text-center'>Descubra por que o inglês é considerado a pior língua do mundo.</p>";
});

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

<style>
/* App CSS Goes Here */
body {
font-family: 'Roboto', sans-serif;
color: #333;
}

h1 {
font-size: 36px;
margin-top: 50px;
}

p {
font-size: 18px;
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
</div>
</body>
</html>