전체 글344 [CSS] Syntax The basic syntax of CSS is like below. selector { property: value; } The selector selects which element of HTML tag. The CSS block is specified by { }. The property means which property is applied to the selected tag. The value means what value is applied to the specified property. The : has to be located between property and value. The ; has to be located after the value. This is the example. d.. 2020. 8. 24. [HTML] script Tag The script tag usually uses when link external JS file to HTML file, or insert script into HTML file. In this post, I'll write about the former one. Include in the head Tag This form is an old style. How it works First, it parses an HTML code. If it meets the script tags, it stops the parsing. It fetches a certain JS file and executes it. Finally, it parses the remaining HTML code. Pros and Cons.. 2020. 8. 24. 이전 1 ··· 36 37 38 39 다음