Review Day1 (3/15)

Hunter_Joe·2023년 3월 17일
0

techit camping

목록 보기
1/12
post-thumbnail

HTML

Hyper Text Markup language

VSC(Visual Studio Code) install

https://code.visualstudio.com/

html / css / js

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
<h1></h1> 
    
</body>
</html>

style.css

body {
	background-color : black; 
    }
    
div {
	color : blue
    } 

main.js

alert("hello JS");

Git & Github

Page

Git : https://git-scm.com/
Github : https://github.com/

Make Github Repository

Connet To Git Using Terimal

  1. Open
  2. Run Terminal
  3. Git connet & Upload to Github
git init

git add . 

git commit -m "first commit"

git remote add origin https://github.com/[my address]

git push -u origin main
profile
hunting season

0개의 댓글