Deploy Website / deploy (push) Successful in 3s
- Removed old style.css and added boilerplate.css for better cross-browser compatibility. - Introduced browserconfig.xml for Microsoft tile support. - Created impressum.php and index.php for main application pages. - Added info.php for PHP info display. - Implemented mett.js and mett.min.js for Mett calculation functionality. - Included respond.min.js for media query support in older browsers. - Recreated style.css with responsive design features. - Added index.html as a landing page with a placeholder message.
29 lines
1000 B
HTML
29 lines
1000 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<title>Dein Nudelrechner</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding: 50px;
|
|
background-color: #fdbf5b;
|
|
color: #984069;
|
|
}
|
|
h1 {
|
|
color: #182132;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Die Nudeln werden noch gekocht ...</h1>
|
|
<p>Wir arbeiten daran, Ihnen etwas Großartiges zu bieten. Bitte schauen Sie bald wieder vorbei!</p>
|
|
<p><img src="nudelrechner.svg" alt="Logo Nudelrechner" width="33%"></p>
|
|
</body>
|
|
</html> |