diff --git a/src/index.html b/src/index.html index 6a7c812fa..473966911 100644 --- a/src/index.html +++ b/src/index.html @@ -3,12 +3,17 @@ + + + HTML Portfolio - - Welcome to the HTML Portfolio Project +
+

Welcome
to
HTML Portfolio Project

+
+ diff --git a/src/main.css b/src/main.css index e69de29bb..980c9cd51 100644 --- a/src/main.css +++ b/src/main.css @@ -0,0 +1,41 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body, html { + /* background: linear-gradient(90deg,black, rgb(2, 2, 89),black); */ + background: linear-gradient(90deg,rgb(5, 5, 54),black,rgb(5, 5, 54)); + color: white; + font-family:Verdana, Geneva, Tahoma, sans-serif; + height: 100vh; +} + +.welcome{ + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} + +h1{ + text-align: center; + font-family: "Protest Revolution", sans-serif; + font-weight: 700; + font-style: normal; + font-size: 60px; +} + +.first{ + font-size: 90px; + color: rgb(94, 94, 236); +} + +.second{ + font-size: 95px; + color: rgba(0, 255, 255, 0.497); + animation: animation 2s; +} + +