ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
§°§ã§ß§à§Ó§í CSS
§á§â§Ö§á§â§à§è§Ö§ã§ã§à§â§à§Ó §Ú §Ú§ç
§Ú§ã§á§à§Ý§î§Ù§à§Ó§Ñ§ß§Ú§Ö §Ó WordPress
WordCamp Russia 2014		 |	 §¥§Þ§Ú§ä§â§Ú§Û §®§Ñ§Û§à§â§à§Ó
§¹§ä§à §ä§Ñ§Ü§à§Ö CSS §á§â§Ö§á§â§à§è§Ö§ã§ã§à§â§í?
?style.scss Magic
?style.css
?style.scss Magic
?style.css
?header.scss
?footer.scss
?body.scss
§£§Ú§Õ§í §á§â§Ö§á§â§à§è§Ö§ã§ã§à§â§à§Ó
sass-lang.com
lesscss.org
learnboost.github.io/stylus
§°§ã§ß§à§Ó§ß§í§Ö §Ó§à§Ù§Þ§à§Ø§ß§à§ã§ä§Ú
§ß§Ñ §á§â§Ú§Þ§Ö§â§Ö Sass
@imports
.sidebar {!
margin: 0;!
padding: 0;!
}
Scss CSS
.sidebar {!
margin: 0;!
padding: 0;!
}!
!
body {!
background: #fff;!
}!
_sidebar.scss
@import ¡°_sidebar¡±;!
!
body {!
background: #fff;!
}!
style.scss
§¬§à§Þ§Þ§Ö§ß§ä§Ñ§â§Ú§Ú
// Silent comment!
!
/* CSS-style comment */!
!
/*!!
Theme Name: Twenty Fourteen Child!
Template: twentyfourteen!
*/!
Scss CSS
/* CSS-style comment */!
!
/*!!
Theme Name: Twenty Fourteen Child!
Template: twentyfourteen!
*/!
!
§±§Ö§â§Ö§Þ§Ö§ß§ß§í§Ö
$font-family: 'Open Sans', sans-serif;!
$text-color: #222222;!
!
body {!
font-family: $font-family;!
color: $text-color;!
}!
Scss CSS
body {!
font-family: 'Open Sans', sans-serif;!
color: #222222;!
}!
§£§Ý§à§Ø§Ö§ß§ß§í§Ö §ã§ä§â§å§Ü§ä§å§â§í
.post {!
margin: 0;!
!
.title {!
font-size: 2em;!
font-weight: normal;!
!
a {!
text-decoration: none;!
}!
}!
}!
Scss CSS
.post {!
margin: 0;!
}!
.post .title {!
font-size: 2em;!
font-weight: normal;!
}!
.post .title a {!
text-decoration: none;!
}!
Nested Media Queries
.container {!
width: 960px;!
!
! @media screen and (max-width: 960px) {!
width: 100%!
}!
}!
Scss CSS
.container {!
width: 960px;!
}!
!
@media screen and (max-width: 960px) {!
.container {!
width: 100%;!
}!
}!
&
a {!
font-weight: bold;!
&:hover {!
text-decoration: underline;!
}!
}!
Scss CSS
a {!
font-weight: bold;!
}!
a:hover {!
text-decoration: underline;!
}!
§¡§â§Ú§æ§Þ§Ö§ä§Ú§Ü§Ñ
height: 20px + 2;!
height: 20px - 2;!
height: 20px * 2;!
height: (20px / 2);!
!
Scss CSS
height: 22px;!
height: 18px;!
height: 40px;!
height: 10px;!
§¸§Ó§Ö§ä§Ñ
color: lighten(#dd4141, 50%);!
color: darken(#dd4141, 30%);!
color: saturate(#dd4141, 75%);!
color: desaturate(#dd4141, 25%);!
Scss CSS
color: white;!
color: #711414;!
color: #ff1f1f;!
color: #c15d5d;!
Submit
Submit
#6ee16c
Mixins
#ffffff
#83e581 (:hover)
Mixins
@mixin btn() {!
background: #6ee16c:!
color: #ffffff; !
&:hover {!
background: #83e581;!
}!
}!
!
input[type="submit"] {!
@include btn();!
}!
Scss CSS
input[type="submit"] {!
background: #6ee16c;!
color: white; }!
! input[type="submit"]:hover {!
! background: #83e581; }!
Button
#6ee16c
Button
#cccccc
Button
#6cb1e1
§²§Ñ§Ù§ß§í§Ö §è§Ó§Ö§ä§Ñ
Mixins §ã §á§Ñ§â§Ñ§Þ§Ö§ä§â§Ñ§Þ§Ú
@mixin btn( $bg-color, $text-color ) {!
background: $bg-color;!
color: $text-color; !
&:hover {!
background: lighten( $bg-color, 5% );!
}!
}!
!
input[type="submit"] {!
@include btn( #6ee16c, #fff );!
}!
Scss CSS
input[type="submit"] {!
background: #6ee16c;!
color: white; }!
! input[type="submit"]:hover {!
! background: #83e581; }!
Button
#ffffff
Button
#000000
Button
#ffffff
§¸§Ó§Ö§ä §ä§Ö§Ü§ã§ä§Ñ
Mixins
@mixin btn( $bg-color ) {!
background: $bg-color;!
@if ( lightness( $bg-color ) > lightness( #aaaaaa ) ) {!
color: #000;!
} @else {!
color: #fff;!
}!
&:hover {!
background: lighten( $bg-color, 5% );!
}!
}!
!
input[type="submit"] {!
@include btn( #6ee16c );!
}!
Scss CSS
input[type="submit"] {!
background: #6ee16c;!
color: white; }!
! input[type="submit"]:hover {!
!background: #83e581; }!
Functions
@function color-check( $color ) {!
@if (lightness($color) > lightness(#aaaaaa)) {!
@return #000;!
} @else {!
@return #fff;!
}!
}!
!
.foo {!
color: color-check( #6ee16c );!
}!
Scss CSS
.foo {!
color: white;!
}
§£ §à§Õ§ß§å §ã§ä§â§à§Ü§å
@function color-check( $color ) {!
@return if( lightness($color) > lightness(#aaaaaa), #000, #fff );!
}!
!
.foo {!
color: color-check( #6ee16c );!
}!
Scss CSS
.foo {!
color: white;!
}
@mixin btn( $bg-color ) {!
background: $bg-color;!
color: color-check( $bg-color );!
!
&:hover {!
background: lighten( $bg-color, 5% );!
}!
}!
!
input[type="submit"] {!
@include btn( #6ee16c );!
}!
Mixin with Function
Scss CSS
input[type="submit"] {!
background: #6ee16c;!
color: white; }!
! input[type="submit"]:hover {!
!background: #83e581; }!
Button
#6ee16c
Button
#cccccc
Button
#6cb1e1
§®§ß§à§Ô§à §Ü§ß§à§á§à§Ü §ã§â§Ñ§Ù§å
Mixins
.btn-blue {!
@include btn( #6cb1e1 );!
}!
.btn-green {!
@include btn( #6ee16c );!
}!
.btn-gray {!
@include btn( #ccc );!
}!
Scss CSS
.btn-blue {!
background: #6cb1e1;!
color: white; }!
.btn-blue:hover {!
background: #81bce5; }!
!
.btn-green {!
background: #6ee16c;!
color: white; }!
.btn-green:hover {!
background: #83e581; }!
!
.btn-gray {!
background: #cccccc;!
color: black; }!
.btn-gray:hover {!
background: #d9d9d9; }!
Maps
$buttons: (!
blue: #6cb1e1,!
green: #6ee16c, !
red: #eb3b50!
);!
!
@each $button, $bg-color in $buttons {!
.btn-#{$button} {!
@include btn( $bg-color );!
}!
}!
Scss CSS
.btn-blue {!
background: #6cb1e1;!
color: white; }!
.btn-blue:hover {!
background: #81bce5; }!
!
.btn-green {!
background: #6ee16c;!
color: white; }!
.btn-green:hover {!
background: #83e581; }!
!
.btn-gray {!
background: #cccccc;!
color: black; }!
.btn-gray:hover {!
background: #d9d9d9; }!
Map with Placeholder Selector
$buttons: (!
blue: #6cb1e1,!
green: #6ee16c, !
red: #eb3b50!
);!
!
@each $button, $bg-color in $buttons {!
%btn-#{$button} {!
@include btn( $bg-color );!
}!
}!
Scss CSS
@extend
input[type="submit"] {!
@extend %btn-green;!
}!
Scss CSS
input[type="submit"] {!
background: #6ee16c;!
color: white;!
}!
input[type="submit"]:hover {!
background: #83e581;!
}!
@extend vs @include
input[type="submit"] {!
@include btn( #6ee16c );!
}!
Scss CSS
input[type="submit"] {!
background: #6ee16c;!
color: white;!
}!
input[type="submit"]:hover {!
background: #83e581;!
}!
@extend vs @include
input[type="submit"] {!
@include btn( #6ee16c );!
}!
!
button {!
@include btn( #6ee16c );!
}!
Scss CSS
input[type="submit"] {!
background: #6ee16c;!
color: white;!
}!
input[type="submit"]:hover {!
background: #83e581;!
}!
button {!
background: #6ee16c;!
color: white;!
}!
button:hover {!
background: #83e581;!
}!
@extend vs @include
input[type="submit"] {!
@extend %btn-green;!
}!
!
button {!
@extend %btn-green;!
}!
Scss CSS
input[type="submit"], button {!
background: #6ee16c;!
color: white;!
}!
input[type="submit"]:hover, button:hover {!
background: #83e581;!
}!
@extend vs @include
input[type="submit"] {!
@extend %btn-green;!
}!
!
// §®§ß§à§Ô§à §Õ§â§å§Ô§Ú§ç §ã§ä§Ú§Ý§Ö§Û!
!
button {!
@extend %btn-green;!
}!
Scss CSS
input[type="submit"], button {!
background: #6ee16c;!
color: white;!
}!
input[type="submit"]:hover, button:hover {!
background: #83e581;!
}!
§µ§ã§ä§Ñ§ß§à§Ó§Ü§Ñ
Command Line
§µ§ã§ä§Ñ§ß§à§Ó§Ü§Ñ Sass §ß§Ñ Mac
1. §°§ä§Ü§â§í§Ó§Ñ§Ö§Þ Terminal
2. §©§Ñ§á§å§ã§Ü§Ñ§Ö§Þ §Ü§à§Þ§Ñ§ß§Õ§å:
gem install sass
§µ§ã§ä§Ñ§ß§à§Ó§Ü§Ñ Sass §ß§Ñ PC
1. §µ§ã§ä§Ñ§ß§Ñ§Ó§Ý§Ú§Ó§Ñ§Ö§Þ Ruby ( http://rubyinstaller.org/ )
2. §°§ä§Ü§â§í§Ó§Ñ§Ö§Þ Command Prompt
3. §©§Ñ§á§å§ã§Ü§Ñ§Ö§Þ §Ü§à§Þ§Ñ§ß§Õ§å:
gem install sass
§¬§à§Þ§á§Ú§Ý§ñ§è§Ú§ñ Sass
1. §ª§Õ§Ö§Þ §Ó §Õ§Ú§â§Ö§Ü§ä§à§â§Ú§ð §Ô§Õ§Ö §Ý§Ö§Ø§Ú§ä §ß§å§Ø§ß§í§Û §æ§Ñ§Û§Ý
cd /Users/Username/Desktop/!
2. §©§Ñ§á§å§ã§Ü§Ñ§Ö§Þ §Ü§à§Þ§Ñ§ß§Õ§å:
sass style.scss style.css
§¡§Ó§ä§à§Þ§Ñ§ä§Ú§é§Ö§ã§Ü§Ñ§ñ §¬§à§Þ§á§Ú§Ý§ñ§è§Ú§ñ Sass
1. §ª§Õ§Ö§Þ §Ó §Õ§Ú§â§Ö§Ü§ä§à§â§Ú§ð §Ô§Õ§Ö §Ý§Ö§Ø§Ú§ä §ß§å§Ø§ß§í§Û §æ§Ñ§Û§Ý
cd /Users/Username/Desktop/!
2. §©§Ñ§á§å§ã§Ü§Ñ§Ö§Þ §Ü§à§Þ§Ñ§ß§Õ§å:
sass --watch style.scss:style.css
Software
compass.kkbox.com
mhs.github.io/scout-app
koala-app.com
alphapixels.com/prepros
incident57.com/codekit/index.html
Frameworks, Mixin Libraries
and Tools
getbootstrap.com
lesselements.com
lesshat.madebysource.com
LESS
compass-style.org/
bourbon.io
foundation.zurb.com
Sass
bourbon.io
foundation.zurb.com
Sass
compass-style.org/
compass-style.org
§¢§à§Ý§î§ê§Ñ§ñ §Ò§Ú§Ò§Ý§Ú§à§ä§Ö§Ü§Ñ?
§á§à§Ý§Ö§Ù§ß§í§ç mixins §Ú §æ§å§ß§Ü§è§Ú§Û
image-width() & image-height()
.selector {!
/slideshow/css-preprocessorswc2014dmitrymayorov/37900233/$image: 'testpattern.gif';!
background: url(/slideshow/css-preprocessorswc2014dmitrymayorov/37900233/$image);!
width: image-width(/slideshow/css-preprocessorswc2014dmitrymayorov/37900233/$image);!
height: image-height(/slideshow/css-preprocessorswc2014dmitrymayorov/37900233/$image);!
}!
Scss CSS
.selector {!
background: url(/slideshow/css-preprocessorswc2014dmitrymayorov/37900233/"testpattern.gif");!
width: 640px;!
height: 480px;!
}!
headings()
#{headings()} {!
font-weight: bold;!
}!
Scss CSS
h1, h2, h3, h4, h5, h6 {!
font-weight: bold;!
}!
enumerate()
.selector {!
#{enumerate(".col", 1, 6)} {!
margin: 0;!
padding: 0;!
}!
}!
Scss CSS
.selector .col-1,!
.selector .col-2,!
.selector .col-3,!
.selector .col-4,!
.selector .col-5,!
.selector .col-6 {!
margin: 0;!
padding: 0;!
}!
URL helpers
con?g.rb
http_path = "/"!
css_dir = "stylesheets"!
sass_dir = "sass"!
images_dir = "img"!
javascripts_dir = "javascripts"!
!
output_style = :expanded!
!
# relative_assets = true!
!
line_comments = false!
image-url()
.selector {!
background: image-url("background.jpg");!
}!
Scss CSS
.selector {!
background: url(/slideshow/css-preprocessorswc2014dmitrymayorov/37900233/&);!
}!
con?g.rb
http_path = "/"!
css_dir = "stylesheets"!
sass_dir = "sass"!
images_dir = "img"!
javascripts_dir = "javascripts"!
!
output_style = :expanded!
!
relative_assets = true!
!
line_comments = false!
image-url()
.selector {!
background: image-url("background.jpg");!
}!
Scss CSS
.selector {!
background: url(/slideshow/css-preprocessorswc2014dmitrymayorov/37900233/&);!
}!
§£§ã§ä§â§à§Ö§ß§ß§í§Ö §Ü§à§Þ§á§à§ß§Ö§ß§ä§í
Reset
@import "compass/reset";
§²§Ñ§ã§ê§Ú§â§Ö§ß§Ú§ñ
1. Susy (susy.oddbird.net) ?
§¢§à§Ý§î§ê§Ö §é§Ö§Þ §á§â§à§ã§ä§à Grid Framework
2. Sass Modular Scale (github.com/Team-Sass/modular-scale)?
§ª§ß§ã§ä§â§å§Þ§Ö§ß§ä §Õ§Ý§ñ §ã§à§Ù§Õ§Ñ§ß§Ú§ñ §Þ§à§Õ§å§Ý§î§ß§í§ç §ã§Ö§ä§à§Ü
3. Breakpoint (breakpoint-sass.com/)?
§ª§ß§ã§ä§â§å§Þ§Ö§ß§ä §Õ§Ý§ñ §â§Ñ§Ò§à§ä§í §ã §Þ§Ö§Õ§Ú§Ñ-§Ó§í§â§Ñ§Ø§Ö§ß§Ú§ñ§Þ§Ú
compass-style.org
§¹§Ö§Ô§à §ã§Ý§Ö§Õ§å§Ö§ä §Ú§Ù§Ò§Ö§Ô§Ñ§ä§î
§²§Ö§Õ§Ñ§Ü§ä§Ú§â§à§Ó§Ñ§ß§Ú§Ö
§Ü§à§Þ§á§Ú§Ý§Ú§â§à§Ó§Ñ§ß§ß§à§Ô§à CSS
?style.scss Magic
?style.css
?vars.scss
?other.scss
?mixins.scss
§²§Ö§Õ§Ñ§Ü§ä§Ú§â§à§Ó§Ñ§ß§Ú§Ö
§æ§Ñ§Û§Ý§Ñ style.css §Ó §ä§Ö§Þ§Ñ§ç
WordPress
§¬§Ñ§Ü §Ó§ß§à§ã§Ú§ä§î §Ú§Ù§Þ§Ö§ß§Ö§ß§Ú§ñ §Ó §ä§Ö§Þ§í
1. Child Themes
2. §®§à§Õ§å§Ý§î §³ustom CSS §á§Ý§Ñ§Ô§Ú§ß§Ñ Jetpack
§´§ñ§Ø§Ö§Ý§í§Ö CSS §æ§Ñ§Û§Ý§í
// Core variables and mixins!
@import "variables.less";!
@import "mixins.less";!
!
// Reset and dependencies!
@import "normalize.less";!
@import "print.less";!
@import "glyphicons.less";!
!
// Core CSS!
@import "scaffolding.less";!
@import "type.less";!
@import "code.less";!
@import "grid.less";!
@import "tables.less";!
@import "forms.less";!
@import "buttons.less";!
!
// Components!
@import "component-animations.less";!
@import "dropdowns.less";!
@import "button-groups.less";!
@import "input-groups.less";!
@import "navs.less";!
@import "navbar.less";!
@import "breadcrumbs.less";!
@import "pagination.less";!
@import "pager.less";!
@import "labels.less";!
@import "badges.less";!
@import "jumbotron.less";!
@import "thumbnails.less";!
@import "alerts.less";!
@import "progress-bars.less";!
@import "media.less";!
@import "list-group.less";!
@import "panels.less";!
@import "responsive-embed.less";!
@import "wells.less";!
@import "close.less";!
!
// Components w/ JavaScript!
@import "modals.less";!
@import "tooltip.less";!
@import "popovers.less";!
@import "carousel.less";!
!
// Utility classes!
@import "utilities.less";!
@import "responsive-utilities.less";!
// Core variables and mixins!
@import "variables.less";!
@import "mixins.less";!
!
// Reset and dependencies!
@import "normalize.less";!
@import "print.less";!
!
// Core CSS!
@import "scaffolding.less";!
@import "type.less";!
@import "code.less";!
@import "grid.less";!
@import "tables.less";!
@import "forms.less";!
@import "buttons.less";!
§ª§Ù§Ý§Ú§ê§ß§Ú§Ö §å§â§à§Ó§ß§Ú §Ó§Ý§à§Ø§Ö§ß§ß§à§ã§ä§Ú
Nesting
.post {!
margin: 0;!
!
.title {!
font-size: 2em;!
font-weight: normal;!
!
a {!
text-decoration: none;!
}!
}!
}!
Scss CSS
.post {!
margin: 0;!
}!
.post .title {!
font-size: 2em;!
font-weight: normal;!
}!
.post .title a {!
text-decoration: none;!
}!
Nesting
.post {!
margin: 0;!
!
.title {!
font-size: 2em;!
font-weight: normal;!
}!
a {!
text-decoration: none;!
}!
}!
Scss CSS
.post {!
margin: 0;!
}!
.post .title {!
font-size: 2em;!
font-weight: normal;!
}!
.post a {!
text-decoration: none;!
}!
What¡¯s next
1. §¥§à§Ü§å§Þ§Ö§ß§ä§Ñ§è§Ú§ñ Sass - sass-lang.com
2. §¥§à§Ü§å§Þ§Ö§ß§ä§Ñ§è§Ú§ñ LESS - lesscss.org
3. CSS-TRICKS - css-tricks.com
4. Tuts+ - tutsplus.com
5. The Sass Way - thesassway.com
6. Hugo Giraudel - hugogiraudel.com
7. Sass For Web Designers - www.abookapart.com
§³§á§Ñ§ã§Ú§Ò§à §Ù§Ñ §Ó§ß§Ú§Þ§Ñ§ß§Ú§Ö
Ad

Recommended

SmartCSS
SmartCSS
Ryo Miyake
?
Crea un tema compatibile con le ultime novit¨¤ WordPress
Crea un tema compatibile con le ultime novit¨¤ WordPress
SkillsAndMore
?
Allow remote conne
Allow remote conne
Siraj Ahmed
?
ÃÀÍÅÒµÎñϵͳͨÓñ«¾±·½°¸
ÃÀÍÅÒµÎñϵͳͨÓñ«¾±·½°¸
ÃÀÍż¼ÊõÍŶÓ
?
FrontInterior 2014: 10 dicas de desempenho para apps mobile hibridas
FrontInterior 2014: 10 dicas de desempenho para apps mobile hibridas
Loiane Groner
?
2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
?
Storytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
?
Artificial Intelligence, Data and Competition ¨C SCHREPEL ¨C June 2024 OECD dis...
Artificial Intelligence, Data and Competition ¨C SCHREPEL ¨C June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
?
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
?
2024 State of Marketing Report ¨C by Hubspot
2024 State of Marketing Report ¨C by Hubspot
Marius Sescu
?
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
Expeed Software
?
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
?
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
?
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
?
Skeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
?
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
?
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
?
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
?
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
?
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
?
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
?
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
?
Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
?
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
?
How to have difficult conversations
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
?

More Related Content

Featured (20)

2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
?
Storytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
?
Artificial Intelligence, Data and Competition ¨C SCHREPEL ¨C June 2024 OECD dis...
Artificial Intelligence, Data and Competition ¨C SCHREPEL ¨C June 2024 OECD dis...
OECD Directorate for Financial and Enterprise Affairs
?
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
?
2024 State of Marketing Report ¨C by Hubspot
2024 State of Marketing Report ¨C by Hubspot
Marius Sescu
?
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
Expeed Software
?
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
?
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
?
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
?
Skeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
?
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
?
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
?
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
?
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
?
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
?
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
?
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
?
Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
?
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
?
How to have difficult conversations
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
?
2024 Trend Updates: What Really Works In SEO & Content Marketing
2024 Trend Updates: What Really Works In SEO & Content Marketing
Search Engine Journal
?
Storytelling For The Web: Integrate Storytelling in your Design Process
Storytelling For The Web: Integrate Storytelling in your Design Process
Chiara Aliotta
?
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
How to Leverage AI to Boost Employee Wellness - Lydia Di Francesco - SocialHR...
SocialHRCamp
?
2024 State of Marketing Report ¨C by Hubspot
2024 State of Marketing Report ¨C by Hubspot
Marius Sescu
?
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
Expeed Software
?
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
Pixeldarts
?
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
?
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
?
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
?
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
?
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
?
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
?
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
?
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
?
Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
?
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
?

§°§ã§ß§à§Ó§í CSS §á§â§Ö§á§â§à§è§Ö§ã§ã§à§â§à§Ó §Ú §Ú§ç §Ú§ã§á§à§Ý§î§Ù§à§Ó§Ñ§ß§Ú§Ö §Ó WordPress