@@ -6,6 +6,10 @@ title: Getting Started Guide
66
77This guide will walk you through creating your first project in LiveCodes.
88
9+ Try the completed project below, or [ open it in a new tab] ( https://livecodes.io/?x=id/q6k8itvp2dv ) .
10+
11+ <iframe src = " https://livecodes.io/?x=id/q6k8itvp2dv" width = " 100%" height = " 400px" ></iframe >
12+
913## Prerequisites
1014
1115- A web browser (Chrome, Firefox, Safari, or Edge)
@@ -15,10 +19,10 @@ This guide will walk you through creating your first project in LiveCodes.
1519
16201 . Navigate to [ livecodes.io] ( https://livecodes.io )
17212 . You'll see the editor interface with three panels:
18- - ** HTML** (left)
19- - ** CSS** (middle)
20- - ** JavaScript** (right)
21- - ** Result** (bottom)
22+ - ** HTML**
23+ - ** CSS**
24+ - ** JavaScript**
25+ - ** Result**
2226
2327## Step 2: Create a Simple Page
2428
@@ -79,7 +83,7 @@ const greetBtn = document.getElementById('greetBtn');
7983greetBtn .addEventListener (' click' , () => {
8084 const name = nameInput .value .trim ();
8185 if (name) {
82- greeting .textContent = ` Hello, ${ name} ! ` ;
86+ greeting .textContent = ` Hello, ${ name} !` ;
8387 } else {
8488 greeting .textContent = ' Hello, World!' ;
8589 }
@@ -95,9 +99,18 @@ The result panel automatically updates as you type. Try:
9599
96100## Step 4: Save Your Project
97101
98- 1 . Click the "Share" button in the toolbar.
99- 2 . Choose ** "Save"** to create a permanent URL
100- 3 . Bookmark or share your project URL
102+ 1 . Click on the "Project" menu button in the toolbar.
103+ 2 . Click Save to save the project (on this device).
104+ 3 . You can open it later from "Project menu > Open".
105+ 4 . Use "Project menu > Share" to get a permanent URL to your project that you can share.
106+
107+ ## Congratulations!
108+
109+ You've just built your first interactive app with LiveCodes!
110+
111+ Compare your version with the completed project above. Did you add any personal touches?
112+
113+ ** [ View the completed project] ( https://livecodes.io/?x=id/q6k8itvp2dv ) **
101114
102115## Next Steps
103116
@@ -111,5 +124,5 @@ Now that you've created your first project, explore:
111124
112125- Use ** Ctrl/Cmd + S** to manually save
113126- Press ** Ctrl/Cmd + Alt + S** to open share panel
114- - Press ** Ctrl/Cmd + Shift + P ** to open the command menu
127+ - Press ** Ctrl/Cmd + K ** to open the command menu
115128- Enable ** Auto-save** in user settings for automatic saving
0 commit comments