Browse Source

Add base and fonts;

master
Nero Ignis 5 years ago
parent
commit
83777d04f6
  1. BIN
      fonts/BebasNeue-Regular.eot
  2. BIN
      fonts/BebasNeue-Regular.otf
  3. BIN
      fonts/BebasNeue-Regular.ttf
  4. BIN
      fonts/BebasNeue-Regular.woff
  5. BIN
      fonts/BebasNeue-Regular.woff2
  6. 18
      index.html
  7. 12
      js/app.js

BIN
fonts/BebasNeue-Regular.eot

Binary file not shown.

BIN
fonts/BebasNeue-Regular.otf

Binary file not shown.

BIN
fonts/BebasNeue-Regular.ttf

Binary file not shown.

BIN
fonts/BebasNeue-Regular.woff

Binary file not shown.

BIN
fonts/BebasNeue-Regular.woff2

Binary file not shown.

18
index.html

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>9Follow</title>
<link rel="stylesheet" href="https://bootswatch.com/4/darkly/bootstrap.min.css">
</head>
<body>
<div class="container" id="app">
<div class="col-md-12">
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="js/app.js"></script>
</body>
</html>

12
js/app.js

@ -0,0 +1,12 @@
let app = new Vue({
el: '#app',
data: {
},
methods: {
},
mounted() {
alert('Hi!');
}
})
Loading…
Cancel
Save