commit b8418205d4fdac9f5576b286b28d4f9bbc838d67
Author: root <root@hub.scroll.pub> Date: 2024-12-27 03:26:13 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..03b813d --- /dev/null +++ b/body.html @@ -0,0 +1,30 @@ +<header> + <h1>What is C Language?</h1> + <p>A powerful and efficient programming language</p> +</header> + +<main> + <section> + <h2>Introduction to C</h2> + <p>C is a general-purpose, procedural programming language developed in the early 1970s by Dennis Ritchie at Bell Labs. It is one of the most widely used programming languages of all time, known for its efficiency and flexibility.</p> + </section> + + <section> + <h2>Key Features</h2> + <ul> + <li>Low-level memory access</li> + <li>Simple set of keywords</li> + <li>Structured programming</li> + <li>Portability across platforms</li> + </ul> + </section> + + <section> + <h2>Why Learn C?</h2> + <p>Learning C provides a strong foundation for understanding computer programming concepts. It is the basis for many modern programming languages and is widely used in system programming, embedded systems, and operating systems.</p> + </section> +</main> + +<footer> + <p>Explore the world of programming with C</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..026da7f --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://clang.scroll.pub +metaTags +editButton /edit.html +title What is C Language? +style.css +body.html +script.js \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..62ab434 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# clang.scroll.pub +Website generated by DeepSeek from prompt: what is a c language \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..684d949 --- /dev/null +++ b/script.js @@ -0,0 +1 @@ +// Add any interactive functionality here if needed \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..df4b913 --- /dev/null +++ b/style.css @@ -0,0 +1,85 @@ +:root { + --primary-color: #2c3e50; + --secondary-color: #3498db; + --background-color: #ecf0f1; + --text-color: #2c3e50; + --link-color: #2980b9; +} + +body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + background-color: var(--background-color); + color: var(--text-color); +} + +header { + background: var(--primary-color); + color: white; + padding: 2rem 1rem; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5rem; +} + +header p { + margin: 0.5rem 0 0; + font-size: 1.2rem; +} + +main { + padding: 2rem 1rem; + max-width: 800px; + margin: 0 auto; +} + +section { + margin-bottom: 2rem; + background: white; + padding: 1.5rem; + border-radius: 8px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +h2 { + color: var(--primary-color); + margin-top: 0; +} + +ul { + padding-left: 1.5rem; +} + +li { + margin-bottom: 0.5rem; +} + +footer { + text-align: center; + padding: 1rem; + background: var(--primary-color); + color: white; +} + +@media (max-width: 600px) { + header h1 { + font-size: 2rem; + } + + header p { + font-size: 1rem; + } + + main { + padding: 1rem; + } + + section { + padding: 1rem; + } +} \ No newline at end of file