티스토리 뷰

https://replit.com/

 

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')

 

댓글
© 2022 chanchaning