๐Ÿ“

007_http\html

ํŒŒ์ผ์ด๋ฆ„ : 007_http\html\about.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=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h1>about์ด๋‹ค!</h1> </body> </html>
ํŒŒ์ผ์ด๋ฆ„ : 007_http\html\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=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="test.css"> </head> <body> <h1>index๋‹ค!!</h1> </body> </html>
ํŒŒ์ผ์ด๋ฆ„ : 007_http\html\product.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=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> product๋‹ค! </body> </html>
// ํŒŒ์ผ์ด๋ฆ„ : 007_http\html\test.css h1ย { ย ย ย ย color:red; }