Calculator Tools Calculator Tools
Create

GSK App

Sep 18, 2023

About this app

A colorful and interactive app for GSK

GSK App Welcome to the GSK App! This is a colorful and interactive app for GSK. Enjoy exploring! Start

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>GSK App</title>
<meta name="description" content="A colorful and interactive app for GSK">
<meta name="keywords" content="GSK, app, interactive, colorful">

<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=Poppins:400,700" 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 */
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f9fa;
}

#main-container {
margin-top: 50px;
text-align: center;
}

h1 {
color: #007bff;
font-size: 36px;
font-weight: 700;
margin-bottom: 30px;
}

.btn-primary {
background-color: #007bff;
border-color: #007bff;
font-weight: 700;
padding: 10px 30px;
font-size: 18px;
}

.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Welcome to the GSK App!</h1>
<p>This is a colorful and interactive app for GSK. Enjoy exploring!</p>
<button class="btn btn-primary">Start</button>
</div>
</body>
</html>