From 9532e90e9e94c6f0e407c39dc579fa0e66c407c1 Mon Sep 17 00:00:00 2001 From: sahilshaikh2023 Date: Sun, 17 May 2026 10:49:27 +0530 Subject: [PATCH] add first file --- Code_clip_SahilShaikh/index.html | 20 +++++++++++++++++++ Code_clip_SahilShaikh/style.css | 34 ++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 Code_clip_SahilShaikh/index.html create mode 100644 Code_clip_SahilShaikh/style.css diff --git a/Code_clip_SahilShaikh/index.html b/Code_clip_SahilShaikh/index.html new file mode 100644 index 00000000..6f154b4d --- /dev/null +++ b/Code_clip_SahilShaikh/index.html @@ -0,0 +1,20 @@ + + + + + + CodeClip_sahilShaikh + + + +
+ +

Home

+

About

+

Page

+

Contact

+

Course

+ +
+ + \ No newline at end of file diff --git a/Code_clip_SahilShaikh/style.css b/Code_clip_SahilShaikh/style.css new file mode 100644 index 00000000..b089f21b --- /dev/null +++ b/Code_clip_SahilShaikh/style.css @@ -0,0 +1,34 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Helvetica Neue', Arial, sans-serif; +} + +html, body { + height: 100%; + width: 100%; + background-color: black; + color: white; +} + +body{ + display: flex; + align-items: center; + justify-content: center; + gap: 16px; +} +.main +{ + display: flex; + align-items: center; + justify-content: center; + gap: 30px; + + +} +.main h3 { + font-size: 18px; + font-weight: 200; + +} \ No newline at end of file