마크업/Html & Css

Html 첫걸음 태그

Rainbow🌈Coder 2022. 2. 27. 00:41
728x90

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

위 홈페이지에서 구동


<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>replit</title>
    <link href="style.css" rel="stylesheet" type="text/css" />
  </head>
  <body>
    Hello world
    <section>section</section> //큰 섹션
    <div>div</div> //섹션보다 작은 그룹
    <p>p</p> //단락
    <script src="script.js"></script>
  </body>
</html>


 

728x90