Skip to content

Instantly share code, notes, and snippets.

@KsAmJ
Last active May 25, 2020 13:07
Show Gist options
  • Save KsAmJ/1628b3c7a03172307fd1537c8761c4ab to your computer and use it in GitHub Desktop.
Save KsAmJ/1628b3c7a03172307fd1537c8761c4ab to your computer and use it in GitHub Desktop.
Test
<h1>👋 Hello World!</h1>
{
"title": "Test Tour",
"steps": [
{
"file": "index.html",
"line": 1,
"description": "Step 1: Your Text Here",
"selection": {
"start": {
"line": 1,
"character": 1
},
"end": {
"line": 1,
"character": 25
}
}
},
{
"file": "script.js",
"line": 1,
"description": "Step 2: Change fontsize value",
"selection": {
"start": {
"line": 1,
"character": 58
},
"end": {
"line": 1,
"character": 61
}
}
},
{
"file": "style.css",
"line": 3,
"description": "Step 3: Change Backgound Color",
"selection": {
"start": {
"line": 3,
"character": 1
},
"end": {
"line": 4,
"character": 1
}
}
}
],
"ref": "master"
}
document.getElementsByTagName("h1")[0].style.fontSize = "8vw";
body {
font-family: system-ui;
background: #f06d06;
color: white;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment