diff options
| -rw-r--r-- | index.html | 42 | ||||
| -rw-r--r-- | style.css | 13 |
2 files changed, 47 insertions, 8 deletions
@@ -1,9 +1,35 @@ -<html> - <head> - <title>Frank's Springy Shoes</title> - </head> - <body> +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" type="text/css" href="style.css"> + <title>Frank's Springy Shoes</title> +</head> +<body> + <div class="main"> <h1>Frank's Springy Shoes</h1> - <p>The innovate product since the iPhone.</p> - </body> -</html> + <i>Partnered with Nike</i> + <p>An innovative product since the iPhone.</p> + <p>Starting at $129.99</p> + <p>Need information? Call us at 1(800)-SPR-INGY</p> + [youtube embed link] + </div> + <div class="review"> + <h2>Our Early Reviews</h2> + <h3>Victoria Jacobs</h3> + <p>These shoes are extremely comfortable! Great quality, I love the fact they have speakers in the shoes! Wicked idea. Worth the price honestly!! - 10/10</p> + <h3>Hymer Hills</h3> + <p>Great quality - 9/10</p> + <h3>Ryan Lee</h3> + <p>These shoes are quite squeaky... It feels like a janky product, worse than Windows 11... - 3/10</p> + <h3>Evets Sboj</h3> + <p>Who needs this shoe? You got to take them out and you lose them, yuck. Nobody should buy this! - 0/10</p> + <h3>Logan Shifter</h3> + <p>I WANT 2 ORDER THIS SHOE - 10/10</p> + <h3>Bintor Tracks</h3> + <p>I will frivolously spend on this! UP YEAH! - 10/10</p> + </div> +</body> +</html>
\ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..aca9d01 --- /dev/null +++ b/style.css @@ -0,0 +1,13 @@ +@import url('https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.css'); + +body { + font-family: Hack, sans-serif; +} + +.main { + text-align: center; +} + +.review { + text-align: left; +}
\ No newline at end of file |
