forked from JimmyLovely/MVI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.3 KB
/
index.html
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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MVI - Minimum Viable Implementation for frontend's `small function`, `issue`, `tool`, etc.</title>
<link rel="stylesheet" href="./css/css.css">
<script src="./js/native.js"></script>
</head>
<body>
<div>
<label>MVI</label>
</div>
<div>
<input type="button" value="sayName" onclick="mvi.sayName()">
</div>
<div class="variable">
<div class="basic-container">
<label class="basic">CSS Variable</label>
<label class="undefined-variable-four">undefined variable Four</label>
</br>
</div>
<div>
<label class="defined-variable">defined variable</label>
</br>
<label class="undefined-variable-first">undefined variable first</label>
</br>
<label class="undefined-variable-second">undefined variable second</label>
</br>
<label class="undefined-variable-third">undefined variable third</label>
</br>
</div>
</div>
<div class="env">
<div class="env-container">
<label class="env-basic">env containder</label>
</div>
</div>
</body>
</html>