From a79429a816e651beae61095f8c4bc65282fe6605 Mon Sep 17 00:00:00 2001 From: "Glitch (hello-webpage)" Date: Mon, 19 Mar 2018 20:11:32 +0000 Subject: [PATCH] =?UTF-8?q?=E2=98=94=EF=B8=8F=F0=9F=91=80=20Checkpoint=20.?= =?UTF-8?q?/styles.css:96831/285=20./index.html:96831/177=20./script.js:96?= =?UTF-8?q?831/291=20./README.md:96831/87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 +++++++----- index.html | 13 ++++++------- script.js | 4 ++++ styles.css | 8 +++++--- 4 files changed, 22 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 3bb5ff9..4c969fd 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,17 @@ This file describes your project to the community. What's your cool website abou ヽ(๏∀๏ )ノ -## ← index.html +## Files this website contains + +### ← index.html Where you'll write the content of your website. -## ← styles.css +### ← styles.css -CSS files add styling rules to your content +CSS files add styling rules to your content. -## ← script.js +### ← script.js -If you're feeling fancy you can add interactivity to your site with Javascript +If you're feeling fancy you can add interactivity to your site with JavaScript. diff --git a/index.html b/index.html index 6c59f6f..3e2c257 100644 --- a/index.html +++ b/index.html @@ -11,18 +11,17 @@ - - +

Hi there!

+

- I'm your cool new webpage. Made with - Glitch! + I'm your cool new webpage. Made with Glitch!

- - +
- + diff --git a/script.js b/script.js index 78ff560..024e0d0 100644 --- a/script.js +++ b/script.js @@ -1 +1,5 @@ +/* If you're feeling fancy you can add interactivity + to your site with Javascript */ + +// prints "hi" in the browser's dev tools console console.log('hi'); \ No newline at end of file diff --git a/styles.css b/styles.css index 9f54d71..ea0844a 100644 --- a/styles.css +++ b/styles.css @@ -1,9 +1,11 @@ -/* this CSS (cascading stylesheet) includes rules for how our webpage looks */ +/* CSS files add styling rules to your content */ body { - font-family:"Benton Sans",-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",helvetica,arial,sans-serif; + font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif; + margin: 2em; } h1 { - font-style: italic + font-style: italic; + color: #373fff; }