diff --git a/assets/img/bg.jpg b/assets/img/bg.jpg new file mode 100644 index 0000000..d318a0f Binary files /dev/null and b/assets/img/bg.jpg differ diff --git a/index.html b/index.html index fa179c3..4093bef 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@ + Dreamy Pet Survey @@ -13,7 +14,7 @@

The pet of my dreams

This survey wants to know which pet you have been dreaming.

- Please answerthe following questions. Your answers are so important to + Please answer the following questions. Your answers are so important to us. Thank you :)

Filds marked with (*) are required.

@@ -21,9 +22,41 @@

The pet of my dreams

Personal Information + + + + + +
Survey Information: +

1. What is your dram pet?

+ + +

+
diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..0a03ced --- /dev/null +++ b/styles/style.css @@ -0,0 +1,21 @@ +@import url('https://fonts.googleapis.com/css?family=Luckiest+Guy|Signika&display=swap'); + +/*Reset style */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Signika', sans-serif; +} +body { + background-image: url('../assets/img/bg.jpg'); +} +.main { + background-color: white; /* define bg color*/ + padding: 20px 40px 30px; /* define internal spacing*/ + width: 800px; /* define a size*/ + margin: 30px auto; /* centers */ +} +.title { + font-family: 'Luckiest Guy', cursive; +}