PHP Classes

File: index.html

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Simple SPA   index.html   Download  
File: index.html
Role: Auxiliary data
Content type: text/plain
Description: Application page
Class: Simple SPA
Demonstrates single page applications
Author: By
Last change:
Date: 17 days ago
Size: 927 bytes
 

Contents

Class file image Download
<!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>