forked from itscodenation/flw1-u1l2-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (52 loc) · 2.44 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Getting Started with Replit</title>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="code-along.html">Code Along</a>
<a href="code-solo.html">Code Solo</a>
</div>
<h1>Welcome to Replit</h1>
<p>
This is a simple guide to help you get started with Replit, an online coding platform.
</p>
<!-- We'll complete 1 and 2 together! -->
<!-- 1. IDE Layout -->
<!-- The left side contains the File Explorer where you can see your project files. -->
<!-- The center area is the Code Editor where you'll write your code. -->
<!-- The right side is the Console/Output where you'll see the results of your code execution. -->
<!-- The top bar contains buttons for running your code, creating new files, and more. -->
<!-- 2. Code Editing -->
<!-- In the Code Editor, you can start writing HTML, CSS, and JavaScript code. -->
<!-- Try changing the text below to "Hello, Code Nation!": -->
<p>Hello, Code Nation!</p>
<!-- Go through steps 3-7 by yourself or with a partner. -->
<!-- 3. Running Code -->
<!-- To run your code, click the "Run" button in the top bar or use the "Ctrl + Enter" shortcut. -->
<!-- The output will appear in the Console/Output section below your code. -->
<!-- 4. Console -->
<!-- Below is a script that runs JavaScript. -->
<!-- Check out the console to see if this message is there! -->
<!-- Find the wrench 🔧 icon and click that to see. -->
<!-- Try changing the message! -->
<script>
console.log("Hello, my name is Joshua Federman");
</script>
<!-- 5. Creating Files -->
<!-- In the File Explorer, you can create new files or delete existing ones. -->
<!-- Right-click on the left side and select "New File" to create a new file. -->
<!-- Name it new-file.html -->
<!-- 6. Deleting Files -->
<!-- Right-click on the delete-this.html file and select "Delete" to remove it. -->
<!-- 7. Saving and Closing a Project -->
<!-- Your project autosaves, but you can also manually save your changes by clicking the "Save" button in the top bar. -->
<!-- To close your project, click the "Close" button in the top-left corner. -->
<h2>Happy Coding!</h2>
<p>
You've learned the basics of using Replit! Feel free to explore more and experiment with different code snippets.
</p>
</body>
</html>