-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!-- index.html -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Rock.js Framework</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<h1>Welcome to the Rock.js Framework Information Site</h1>
</header>
<main>
<section id="about">
<h2>About Rock.js</h2>
<p>Rock.js is a powerful JavaScript framework designed to build scalable and maintainable web applications. It provides a flexible and efficient model-view-controller (MVC) architecture, and comes with a rich set of features such as two-way data binding, modular code structure, and easy-to-use APIs.</p>
</section>
<button id="toggleButton">Toggle Getting Started Section</button>
<section id="getting-started">
<h2>Getting Started with Rock.js</h2>
<p>To get started with Rock.js, first install it via npm by running the command `npm install rockjs`. Then, create a new Rock.js project by running `rockjs new my-app`. Navigate into your new project with `cd my-app`, and start the development server with `rockjs serve`. Now you're ready to start building your Rock.js application!</p>
</section>
<!-- Add more sections as needed -->
</main>
<footer>
<p>© 2024 Rock.js Information Site</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>