diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6b665aa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} diff --git a/Images/artificial-intelligence.jpg b/Images/artificial-intelligence.jpg new file mode 100644 index 0000000..a658a9b Binary files /dev/null and b/Images/artificial-intelligence.jpg differ diff --git a/index.html b/index.html index 69d1e1d..f298550 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,9 @@ - - - + + + + + + Hackathon + + +
+

Welcome to my World

+
+

You are about to witness something spectacular

+ Checkout my first work +
+
+ +
+
+
+ + + + + + + + +
+ + + +
+ + + + + +
+ + + +
+
+
+ + diff --git a/style.css b/style.css index 8b13789..3bd2a00 100644 --- a/style.css +++ b/style.css @@ -1 +1,78 @@ - +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: Helvetica; +} +.sections { + display: flex; + flex-direction: column; +} +.heading { + color: blue; + font-size: 15px; + text-align: center; +} +.welcome { + color: red; + font-size: 15px; + text-align: center; + margin-top: 10px; +} +.my_link { + display: flex; + justify-content: center; + margin-top: 10px; +} +.image { + display: flex; + justify-content: center; + align-items: center; +} +.my_image { + border: 3px solid green; + width: 500px; + height: 500px; + margin: 10px 0 10px 0; +} +.form { + display: flex; + align-items: center; + flex-direction: column; + border-radius: 10px; +} +#myForm { + display: flex; + justify-content: center; +} +.input { + border-radius: 6px; + width: 500px; + height: 30px; + padding-left: 10px; + margin: 10px 0 10px 0; +} +.gender { + width: 15px; + height: 15px; + margin-right: 5px; +} +.gender_div { + display: flex; + gap: 60px; + margin-bottom: 10px; +} +.button { + width: 200px; + height: 40px; + background-color: aqua; + border: none; + border-radius: 6px; + font-size: 20px; + font-family: "Courier New", Courier, monospace; +} +.submit_btn { + display: flex; + gap: 50px; + margin-top: 20px; +}