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; }