diff --git a/index.html b/index.html index 504dc31..d8c7cb1 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,82 @@ - +
- - + Tribute to my wife + +
+ +
+

TRIBUTE TO MY LOVELY WIFE

+I got this from Pexel +
+ +

HERE ARE SOME QUALITY MY WIFE POSSESS

+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..b6d91c5 --- /dev/null +++ b/style.css @@ -0,0 +1,63 @@ +body { + background-color: aliceblue; +} + +h1 { + color: rgb(0, 204, 255); + text-align: center; +} + +h2 { + text-align: center; + text-decoration: solid; + color: rgb(0, 204, 255); +} + +p { + letter-spacing: 5px; + font-size: medium; +} + +img { + display: block; + margin: auto; +} + +div { + border: 5px solid; + margin: auto; + width: 50%; + padding: 10px; + } + +nav { + display: block; + margin: auto; + padding: 10px; + background-color: #333; + text-align: center; +} + +nav ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +nav ul li a { + color: #fff; + text-decoration: none; + padding: 5px 10px; + border-radius: 5px; + transition: background-color 0.3s ease; + +} + +nav ul li a:hover { + background-color: #555; +} + +button { + background-color: red; +} +