Created
March 10, 2024 13:23
-
-
Save mind-miner-dave/c9a9157bb218e803adc62bd9312780e0 to your computer and use it in GitHub Desktop.
HTML 실습 - 지수, sup, sub
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 lang="ko"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
</head> | |
<body> | |
<p>a<sup>2</sup>=5</p> | |
<p>log<sub>3</sub>b=6</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment