Content ITV PRO
This is Itvedant Content department
Learning Outcome(Slide2)
6
Basics of branding and messaging
5
Target audience and segmentation
4
Different marketing channels
3
Creating value for customers
2
Understanding customer needs
1
What marketing means ?
Choose cool, soft colors instead of vibrant colors
Max 6 Points for Summary & Min 4
Topic Name-Recall(Slide3)
Would you be excited to live in it if it looked like this?
Plain gray walls
No paint
No curtains
No furniture
No lighting
No decoration
You can enter it, live in it, and use all its rooms.
Does it look attractive?
Does it feel welcoming?
Does it reflect your personality?
To make the plain webpage visually appealing and attractive, we use CSS.
CSS stands for Cascading Style Sheets.
It is used to style and design HTML webpages.
CSS stands for Cascading Style Sheets.
It is used to style and design HTML webpages.
Fonts
Colors
Layouts
Spacing
Borders
Alignment
Style multiple elements simultaneously with less code.
Write once, apply everywhere across the website.
Separation of concerns makes HTML readable.
Uniform look and feel across all webpages.
Adapt layout seamlessly to different screen sizes.
style.css
h1{
color : blue ;
font-size : 30px ;
}
style.css
h1{
color : blue ;
font-size : 30px ;
}
style.css
h1{
color : blue ;
font-size : 30px ;
}
Single rule
Multiple rules
Comments are notes written inside CSS code.
Browser ignores comments during execution.
Syntax
/* This is a CSS comment */
Applied directly inside HTML elements using the style="" attribute.
Quick fixes
Single page styles
Best practice
Defined within a <style> tag inside the HTML file's <head>.
Written in a separate .css file and linked to the HTML document.
//Index.html
<style>
h1{
color:blue;
}
</style>External css
//Index.html
<head>
<link rel="stylesheet"
href="style.css">
</head>Links to
//style.css
h1{
color:blue;
}//Index.html
<h1 style="color:red">
Welcome
</h1>Core Concepts (Slide 7)
Core Concepts (.....Slide N-3)
Summary
5
Build strong branding
4
Use different marketing channels
3
Target the right audience
2
Create and communicate value
1
Understand customer needs
Choose cool, soft colors instead of vibrant colors
Max 5 Points for Summary & Min 2
Quiz
Which platform is mainly used for professional networking and B2B marketing ?
A. Facebook
B. Instagram
C. LinkedIn
D. Snapchat
Quiz-Answer
Which platform is mainly used for professional networking and B2B marketing ?
A. Facebook
B. Instagram
C. LinkedIn
D. Snapchat
By Content ITV