9th day at uki
1. PERSONAL COACHING
😍SMART
♧♧ S - Specific
♧♧ M - Measurable
♧♧ A - Achievable
♧♧ R - Realistic
♧♧ T - Time oriented
😍GOAL SUCCESS FORMULA
♧♧ C - Clear
♧♧C - Confidence 100%
♧♧ E - Expectation
♧♧ E - Emotions
GOAL SETTINGS
CSS
Three types of css
1. Inline css
Three types of css
1. Inline css
2.Internal css
3.External css
INLINE CSS
An inline CSS is used to apply a unique style to a single HTML element.
An inline CSS uses the style attribute of an HTML element.
<html>
<body>
<h1 style ="color:yellow;">
this is a heading</h1>
</body>
</html>
INTERNAL CSS
<html>
<head>
<style>
body {background-color:powder blue;}
h1 {color:blue;}
p {color:red;}
</style>
</head>
<body>
<h1> this is a heading </h1>
<p> this is a paragraph </p>
</body>
</html>
EXTERNAL CSS
<link rel="stylesheet" href="filename">
3.External css
INLINE CSS
An inline CSS is used to apply a unique style to a single HTML element.
An inline CSS uses the style attribute of an HTML element.
<html>
<body>
<h1 style ="color:yellow;">
this is a heading</h1>
</body>
</html>
INTERNAL CSS
<html>
<head>
<style>
body {background-color:powder blue;}
h1 {color:blue;}
p {color:red;}
</style>
</head>
<body>
<h1> this is a heading </h1>
<p> this is a paragraph </p>
</body>
</html>
EXTERNAL CSS
<link rel="stylesheet" href="filename">
PROGRAMMING PRACTICALS
No comments:
Post a Comment