../ --> use for use file from different folder from similar directory.
CSS can use in 3 types.
- Inline Style
- The <Style> Element
- External stylesheet
Inline style -> style="color: aqua;"
<label for="meal" style="color: aqua;">Please select meal</label>
The <style> Element-> use css in same page.
<head>
<style>
h2 {
color: blanchedalmond
}
</style>
</head>
External style sheet -> use different file for css.
<link rel="stylesheet" href="../css/app.css">
../ --> use for use file from different folder from similar directory.
Comments
Post a Comment