Skip to content

Instantly share code, notes, and snippets.

@dskecse
Last active May 26, 2017 12:53
Show Gist options
  • Save dskecse/a410731f014971e000bbd4ba9ce97ac6 to your computer and use it in GitHub Desktop.
Save dskecse/a410731f014971e000bbd4ba9ce97ac6 to your computer and use it in GitHub Desktop.

Revisions

  1. dskecse revised this gist May 26, 2017. 2 changed files with 4 additions and 0 deletions.
    1 change: 1 addition & 0 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -6,6 +6,7 @@
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
    <link rel="stylesheet" href="style.css">
    </head>
    <body>
    <main id="app">
    3 changes: 3 additions & 0 deletions style.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    body {
    font-family: "PT Sans", sans-serif;
    }
  2. dskecse revised this gist May 26, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion index.html
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@
    <meta charset="utf-8">
    <title>Vue.js App Template Title</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400&subset=cyrillic">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
    </head>
    <body>
  3. dskecse created this gist May 26, 2017.
    22 changes: 22 additions & 0 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>Vue.js App Template Title</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400&subset=cyrillic">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
    </head>
    <body>
    <main id="app">
    </main>
    <script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script>
    <script>
    new Vue({
    el: "#app",
    data: {
    }
    });
    </script>
    </body>
    </html>