From 498780f5e0d7420e07b4fbf4a3f71e24c1eeaead Mon Sep 17 00:00:00 2001 From: root Date: Tue, 18 Nov 2025 13:20:49 +0300 Subject: [PATCH] Added boiler plate --- .DS_Store | Bin 0 -> 6148 bytes HTML_boilerplate.html | 16 ------- index.html | 78 +++++++++++++++++++++++++++++++++ pingpong.html | 97 ------------------------------------------ styles.css | 43 +++++++++++++++++++ 5 files changed, 121 insertions(+), 113 deletions(-) create mode 100644 .DS_Store delete mode 100644 HTML_boilerplate.html create mode 100644 index.html delete mode 100644 pingpong.html create mode 100644 styles.css diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..e663c5acecbbd55dfc4f2a636538185f8e6684f9 GIT binary patch literal 6148 zcmeH~y-y=C5XGN43QjaMNR+PVxEv8kh-wuQK|wgA04FL)Ac8<3C?C?%ZO6aOZ)^*J z0tE#KPIhF!+3}2L=6SV_CAr$&7}o$qUc zRTphV_2An^I^?;lVbES;Wfm13Gk>dd&WL4x zT|9?KRsE)~BVA~NahtJ;X630KuVs1GXz}x^;WrBFSbkNiT0`3+=MFymtU1sXt6Q8+ zX7-US>j8PTsm<#znhw0QiD)%g+!gAnBEOf%y~N`?*#C+zP|hhckQw-v47ix}-2Au9 zJ|~?S$P9cW1NMFJbi*QH88Li17{V0*oJAcPvfU-j$0sZjmJykux#$W;SC_6BF1n-l z$*xFPMvU%qAu{Wv$S&PbT!@a|2Xnb1VjeRCnSqxK{D_YWcK$cszW={;%1@br%)o!e zfSawi>NQGAXX{jPcGi0ODczdcl@Xs@5W-Q6tsTWn^w7|I6Tl*284(RF{}Bi@ - - - - - - HTML5 Boilerplate - - - - -

Page Title

- - - - \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..41fc106 --- /dev/null +++ b/index.html @@ -0,0 +1,78 @@ + + + + + + + Professional Website - Starter Template + + + + + + + +
+ +
+ + + + + +
+
+
+

Page Heading

+

Content for sidebar...

+
+
+

Main Content

+
+
+

Section 1

+

Content for section 1...

+
+
+

Section 2

+

Content for section 2...

+
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/pingpong.html b/pingpong.html deleted file mode 100644 index 4c3774c..0000000 --- a/pingpong.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - Simple Paddle Game - - - - -
-
-
-
- - - - - \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..ea3db26 --- /dev/null +++ b/styles.css @@ -0,0 +1,43 @@ +/* File: starter-styles.css */ +/* Custom Styles - Starter Template */ + +/* Header styles */ +.header-logo { + max-width: 300px; + height: auto; +} + +.navbar-logo { + max-height: 3rem !important; +} + +/* Navigation styles */ +.navbar { + /* TODO: Add custom navigation styling */ +} + +.nav-link { + /* TODO: Add custom link styling */ +} + +/* Content styles */ +.container { + /* TODO: Add custom container styling */ +} + +h1, h2, h3 { + /* TODO: Add custom heading styles */ +} + +/* Footer styles */ +.footer { + /* TODO: Add custom footer styling */ + margin-top: 50px; + padding: 20px; + text-align: center; +} + +/* Responsive adjustments */ +@media (max-width: 576px) { + /* TODO: Add mobile-specific styles */ +} \ No newline at end of file