Last active
January 18, 2023 12:44
-
-
Save zinozzino/8b52922a55eeeebd78e172fc4b5ce0a0 to your computer and use it in GitHub Desktop.
HTML 과제1번
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.root { | |
background-color: yellow; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>과제</title> | |
<link href="./index.css"> | |
</head> | |
<body> | |
<div id="root"> | |
<p>안녕하세요!</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment