From 4b8ea21150562bbcb7c245f3d79a23bc0f29221a Mon Sep 17 00:00:00 2001 From: Dragos Date: Fri, 30 Oct 2020 14:13:02 +0200 Subject: [PATCH] prototype upload --- .gitignore | 2 ++ career.html | 40 +++++++++++++++++++++++++ discography.html | 66 ++++++++++++++++++++++++++++++++++++++++ index.html | 29 ++++++++++++++++++ stylesheet.css | 78 ++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 215 insertions(+) create mode 100644 .gitignore create mode 100644 career.html create mode 100644 discography.html create mode 100644 index.html create mode 100644 stylesheet.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a013cf3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Local Netlify folder +.netlify \ No newline at end of file diff --git a/career.html b/career.html new file mode 100644 index 0000000..2859bb8 --- /dev/null +++ b/career.html @@ -0,0 +1,40 @@ + + + + + + repl.it + + + + +
+

Careers

+
+
+
Krystal Piano + Krystal Marie Peterson got her first big break performing the title song "Supergirl!" on Disney's The Princess Diaries soundtracks and was also known for touring as the opening act for the Backstreet Boys on The Black & Blue Tour +
+ Her debut album was called Me & My Piano, and it was released on June 5, 2001, right before the success of the film The Princess Diaries. She also provided her song "Love Is a Beautiful Thing" for the film Legally Blonde; the song was remixed for the soundtrack. In 2002, she released the song "The Kid in You" for Disney's The Country Bears soundtrack as well as appearing in the film as herself. She also guest-starred as the lead role in the Touched by an Angel episode 9x16: "A Song for My Father". Additionally, she provided the singing voice for Velma at the end of the direct to DVD movie Scooby-Doo! and the Legend of the Vampire. +
+ + +
+ + \ No newline at end of file diff --git a/discography.html b/discography.html new file mode 100644 index 0000000..495f14f --- /dev/null +++ b/discography.html @@ -0,0 +1,66 @@ + + + + + + Discography + + + + + + +
+

Discography of Krystal Harris

+
+
+ + + +
+ + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..436cd00 --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + repl.it + + + + + + +
+

Krystal Harris

+
+
+ Krystal Marie Peterson (née Harris; November 7, 1981, in Anderson, Indiana) is a singer-songwriter/instrumentalist who primarily plays the piano. Krystal has been singing since she was just 18 months old, and began playing the piano at 3 years of age. She also plays the drums and the flute. She graduated in 1999 from Anderson High School in Anderson, Indiana at the age of 17. +
+ As early as 2000, she felt at odds with the demands of pop stardom. Krystal eventually moved back home to Indiana for what she called "a time of restoration" and to reassess her career. She married Daniel Peterson and they settled in Cincinnati, Ohio. Peterson is the drummer in Krystal's current band. +
+ + \ No newline at end of file diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..80110b7 --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,78 @@ +html { + background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTuTRubktE_nBePZ7UvICyIR4ndySBiCmM7xw&usqp=CAU); +} +body { + padding: 10px; + margin: 50px; + background-color: white; + +} +.dropbtn { + background-color: #4CAF50; + color: black; + padding: 16px; + font-size: 16px; + border: none; + cursor: pointer; + } + + .dropdown { + position: relative; + display: inline-block; + } + + .dropdown-content { + display: none; + position: absolute; + background-color: #f9f9f9; + min-width: 160px; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + z-index: 1; + } + + .dropdown-content a { + color: darkred; + padding: 12px 16px; + text-decoration: none; + display: block; + } + + .dropdown-content a:hover {background-color: #f1f1f1} + + .dropdown:hover .dropdown-content { + display: block; + } + + .dropdown:hover .dropbtn { + background-color: #3e8e41; + } + #car1 { + float: right; + } + #car2 { + float: left; + } + nav { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #333; + } + + li { + float: left; + } + + li a { + background-color: black; + display: block; + color: darkred; + text-align: center; + padding: 14px 16px; + text-decoration: none; + } + + li a:hover { + background-color: #111; + }