-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Laravel Mix Boilerplate</title>
<link rel="stylesheet" href="/dist/css/sample.css">
<!-- Hot Moduleの場合 -->
<!--<link rel="stylesheet" href="http://127.0.0.1:8080/dist/css/sample.css">-->
</head>
<body>
<h1>Laravel Mix Boilerplate</h1>
<p class="red">RED</p>
<p class="bg_black">Background Black</p>
<p class="rotate" style="width:100px;">RotateZ4(5deg)</p>
<div class="grid">
<div>
<p>grid1</p>
</div>
<div>
<p>grid2</p>
</div>
</div>
<div class="flex">
<p>flex</p>
</div>
<p class="transition">transition</p>
<p class="anime">animation</p>
<script src="/dist/js/main.js"></script>
<!-- Hot Moduleの場合 -->
<!--<script src="http://127.0.0.1:8080/dist/js/main.js"></script>-->
</body>
</html>