-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1015 Bytes
/
index.html
File metadata and controls
35 lines (31 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<meta charset="UTF-8" />
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="./src.js"></script>
<link href="./style.css" rel="stylesheet" />
</head>
<body>
<div id="app">
<table>
<tr>
<td>
<img height="150px" src="./ie.gif" />
<img height="180px" src="./welcome-to-my-site.gif" />
<img height="150px" src="./ie.gif" />
</td>
</tr>
<tr>
<td><p class="xonised" v-html="xoni"></p></td>
</tr>
<tr>
<td><textarea v-model="phrase"></textarea></td>
</tr>
<tr><td>
<img width="400px" src="./uc.gif" />
</td></tr>
</table>
</div>
<script src="./app.js"></script>
</body>
</html>