Calculator Tools Calculator Tools
Create

NaN Company

Nov 4, 2023

About this app

NaN Company - A Fun and Colorful Web App

NaN Company NaN Company Welcome to NaN Company We are a fun and innovative company that specializes in creating exciting web apps. Learn More App 1 Description of App 1 goes here. View App App 2 Description of App 2 goes here. View App App 3 Description of App 3 goes here. View App App 4 Description of App 4 goes here. View App

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>NaN Company</title>
<meta name="description" content="NaN Company - A Fun and Colorful Web App">
<meta name="keywords" content="NaN Company, web app, fun, 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">

<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 {
background-color: #f7f7f7;
font-family: 'Roboto', sans-serif;
color: #333;
}

.navbar {
background-color: #333;
color: #fff;
}

.navbar-brand {
font-size: 24px;
}

.jumbotron {
background-color: #fff;
padding: 50px;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.jumbotron h1 {
font-size: 42px;
}

.jumbotron p {
font-size: 18px;
margin-bottom: 20px;
}

.btn-primary {
background-color: #ff6b6b;
border-color: #ff6b6b;
color: #fff;
font-size: 18px;
padding: 10px 20px;
border-radius: 5px;
}

.btn-primary:hover {
background-color: #ff5252;
border-color: #ff5252;
}

.card {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.card-title {
font-size: 24px;
margin-bottom: 10px;
}

.card-text {
font-size: 16px;
margin-bottom: 20px;
}

.card-link {
color: #ff6b6b;
text-decoration: none;
font-weight: bold;
}

.card-link:hover {
color: #ff5252;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="#">NaN Company</a>
</div>
</nav>

<div class="container">
<div class="jumbotron">
<h1>Welcome to NaN Company</h1>
<p>We are a fun and innovative company that specializes in creating exciting web apps.</p>
<a href="#" class="btn btn-primary">Learn More</a>
</div>

<div class="row">
<div class="col-md-6">
<div class="card">
<h2 class="card-title">App 1</h2>
<p class="card-text">Description of App 1 goes here.</p>
<a href="#" class="card-link">View App</a>
</div>
</div>
<div class="col-md-6">
<div class="card">
<h2 class="card-title">App 2</h2>
<p class="card-text">Description of App 2 goes here.</p>
<a href="#" class="card-link">View App</a>
</div>
</div>
</div>

<div class="row">
<div class="col-md-6">
<div class="card">
<h2 class="card-title">App 3</h2>
<p class="card-text">Description of App 3 goes here.</p>
<a href="#" class="card-link">View App</a>
</div>
</div>
<div class="col-md-6">
<div class="card">
<h2 class="card-title">App 4</h2>
<p class="card-text">Description of App 4 goes here.</p>
<a href="#" class="card-link">View App</a>
</div>
</div>
</div>
</div>

<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>
</body>
</html>