-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstep1.html
32 lines (22 loc) · 1.1 KB
/
step1.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
<!-- Step 1: getting started -->
<!-- This is a comment! -->
<!-- Comments aren't "code"--when your computer "runs" a program, it ignores comments, as if they don't exist! -->
<!-- Comments certainly do exist though, and are useful for documenting code, so that it's easier for others
(and yourself!) to read -->
<!-- find out more about comments here https://www.w3schools.com/html/html_comments.asp -->
<!--
Step 1.0
get the "path" to this file
In VSCode, on the left side bar, go to the "Explorer" menu, find 'step1.html'
then right click it and select "copy path"
Then, paste that path into your web browser's url bar. What happens? Keep this window open.
-->
<!--
Step 1.1
Try changing the text between the <h1> and </h1> down below! Then, go to your browser window and click refresh. What happens?
What are <h1> and </h1>? What if we replace them with something different? What happens if we remove one or both? Try it out!
-->
<h1>So you wanna set up a Stanford Daily email newsletter?</h1>
<!--
One line of code and 30 lines of comments... I promise, things will get better!
-->