코딩 공부/Nomad Coder
노마드 코더 바닐라 자바스크립트 1-5
찬찬잉
2021. 8. 23. 09:47
The collaborative browser based IDE
Replit is a simple yet powerful online IDE, Editor, Compiler, Interpreter, and REPL. Code, compile, run, and host in 50+ programming languages.
replit.com
수업은 Repl를 이용해서 이루어진다.
index.html
<DOCTYPE html>
<html>
<head>
<title>Something</title>
<link rel="stylesheet"
href="index.css">
</head>
<body>
<h1>This works!</h1>
<script src="index.js"></script>
</body>
</html>
index.css
body{
background-color: peru;
}
h1 {
color: white;
}
index.js
console.log('Im Working. Im JS')