-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.html
22 lines (22 loc) · 993 Bytes
/
app.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Modal - Test" />
<meta name="author" content="hogank" />
<title>Modal - Test</title>
<script>document.write('<link href="css/app.css?v=' + new Date().getTime() + "-" + Math.floor(Math.random() * 100000000000) + '" rel="stylesheet" type="text/css" />');</script>
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" >
</head>
<body>
<div id="app" class="app">
<div id="header" class="header">App Header</div>
<div id="modal" class="modal">
<div class="field a">Left</div>
<div class="field b">Right</div>
</div>
</div>
<script>document.write('<script src="js/app.js?v=' + new Date().getTime() + "-" + Math.floor(Math.random() * 100000000000) + '" type="text/javascript"><\/script>');</script>
</body>
</html>