diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..14f7f34 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: node_js +node_js: + - lts/* + cache: npm + + install: + - npm install + + script: + - npm test + - npm run build \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..4783501 --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + + + + My Project + + +

Project Starter

+ + + diff --git a/script.js b/script.js new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/script.js @@ -0,0 +1 @@ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..ec80c4b --- /dev/null +++ b/style.css @@ -0,0 +1,16 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); + +* { + box-sizing: border-box; +} + +body { + font-family: 'Roboto', sans-serif; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; + overflow: hidden; + margin: 0; +}