<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SPA Simples</title>
<link rel="stylesheet" href="assets/css/w3.css" type="text/css" />
<meta name="theme-color" content="#000000">
<link rel="manifest" href="./manifest.json">
<link rel="sortcut icon" href="./favicon.ico" type="image/jpg">
<link rel="stylesheet" href="assets/css/fontawesome/css/font-awesome.min.css" type="text/css" />
<script type="module" src="assets/js/script.js"></script>
</head>
<body>
<div class="w3-row w3-border">
<div class="w3-container w3-border w3-threequarter">
<div id="app"></div>
</div>
<div class="w3-container w3-quarter w3-lightgrey">
<h2>Propaganda</h2>
</div>
</div>
<script type="module" src="assets/js/app.js"></script>
</body>
</html>
|