mortar-app-stub/index.html

34 строки
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- This is a comment. Everything between the opening and closing > is ignored by the browser.
We'll use that to provide you with some help.
You can safely delete the comments once you're done with them. -->
<!-- This is the title of your page. Change it at will. For example: Super great space game -->
<title>Hello world!</title>
<!-- Search engines sometimes use this when showing results. Change it to match your page's contents -->
<meta name="description" content="My first page is a carefully crafted example of web awesomeness.">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<h1>Awesome app</h1>
<div id="content">
<p>Welcome to your awesome web app!</p>
<p>This was created from the <a href="https://github.com/mozilla/mortar-app-stub">mortar-app-stub</a>
template, one of the <a href="https://github.com/mozilla/mortar">mortar templates</a>.</p>
<button id="install-btn">Install</button>
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>