SlideShare a Scribd company logo
1 of 47
Download to read offline
CREATE A LANDING PAGE
YOUR WEAPONS
WHICH CODE EDITOR ?
Sublime Text Web Storm
Both have   (Zen Coding)Emmet (http://docs.emmet.io/)
WHICH BROWSER ?
CHROME, DEFINITELY.CHROME, DEFINITELY.
HTML & CSS
ARCHITECTURE OF A WEB PAGE
Skeleton with
HTML
Design with
CSS
Interact with
Javascript
LET'S SET A SIMPLE EXAMPLE
HTML
<div class="hello">
hello <span class="highlight">world</span>
</div>
CSS
.hello { font-size: 50px; color: red; }
.highlight { font-weight: bold; }
RESULT
hello world
AND A FULL PAGE !
<html>
<head>
<title>The title of my page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">This is my header</div>
<script src="myscript.js"></script_>
</body>
</html>
HTML5 / ALL THE TAGS
HTML5 / COMMON TAGS USED
We primarily use : div & span
and a, img, form, input, button.
CSS / BIND TO HTML WITH SELECTORS
to identify HTML tags and apply design
.container {}
.container .item:first-child {}
:last-child
:not(:last-child)
CSS / COMMON STYLES USED
position, float, display
margin, padding
font‐family, font‐size, font‐weight
text‐align
color, background
CSS / ADJUST STYLES WITH CHROME DEVTOOLS
LIVE CODING (slides/htmlcss/css/example.html)
SASS / ORGANIZE THE CSS
SASS :
is a CSS preprocessor
simplify reading of the code
structure code in multiple files
SASS / SIMPLIFY THE CSS
Don't write :
.hero { background: black; }
.hero h1 { color: red; }
.hero .highlight { font-weight: bold; }
But write :
.hero {
background: black;
h1 {
color: red;
.highlight { font-weight: bold; }
}
}
SASS / SPLIT THE CSS IN MULTIPLE FILES
Don't write all your CSS in 1 file ...
.hero { color: red; }
/* ... > 1000 CSS messy lines */
.footer { font-size: 12px; }
But split it in multiple files, sort by categories :
@import '_header';
@import '_layout';
// ...
@import '_footer';
BOOTSTRAP
http://getbootstrap.com (http://getbootstrap.com)
EXISTINGS FRAMEWORKS ?
 en français !
...
Twitter Bootstrap (http://getbootstrap.com)
Foundation (http://foundation.zurb.com)
KNACSS (http://www.knacss.com)
GRID / UNDERSTAND THE GRID SYSTEM
Bootstrap has a grid of 12 columns.
GRID / USE THE GRID SYSTEM
How to use the grid ?
<div class="row">
<div class="col-md-4 col-sm-6">Column 1</div>
<div class="col-md-4 col-sm-6">Column 2</div>
<div class="col-md-4 col-sm-6">Column 3</div>
</div>
The grid will have :
3 columns for a medium screen (width >= 992px)
2 columns for a small screen (768px >= width > 992px)
1 columns for a tiny screen (width < 768px)
DEMO (slides/bootstrap/grid/demo.html)
BUTTONS
Standard :  Button
<button class="btn btn-default" type="submit">Button</button>
Color :  Button
<button class="btn btn-primary" type="submit">Button</button>
Size :  Button   Button
<button class="btn btn-primary btn-lg" type="submit">Button</button>
<button class="btn btn-primary btn-xs" type="submit">Button</button>
FORMS
Email
Password
Sign in
<form class="form-horizontal">
<div class="form-group">
<div class="col-sm-12">
<input type="email" class="form-control" placeholder="Email">
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<input type="password" class="form-control" placeholder="Passwor
d">
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<button type="submit" class="btn btn-default">Sign in</button>
</div>
</div>
</form>
CLEAN <CODE>
THE SMACSS METHOD EXTENDED
SMACSS (Scalable and Modular Architecture for CSS) is a
style guide for CSS. https://smacss.com
(https://smacss.com)
We split the code into functional modules
ORGANIZE FILES / OVERVIEW
mylandingpage
|- bower_components : external plugins
|- node_modules : tools to build the project
|- scss : my common styles
|- src
|- app : the page
|- assets : media files
|- images
|- index.html : the homepage
|- bower.json : list of the external plugins
|- gulpfile.js : JS makefile
|- package.json : list of tools to build the project
ORGANIZE FILES / 'SCSS' DIRECTORY
mylandingpage
|- scss
|- _base.scss : basics styles
|- _form.scss : forms
|- _layout.scss : all about structure
|- _mixins.scss : functions
|- _variables.scss : common configuration
|- index.scss : import the previous
|- vendor.scss : import the external styles
ORGANIZE FILES / 'SRC/APP' DIRECTORY
mylandingpage
|- src
|- app
|- _header.scss : header of the page
|- _features.scss : feature part
|- _footer.scss : footer of the page
|- _hero.scss : hero part
|- _prices.scss : prices part
|- navbar.js : navbar behavior JS
|- index.js : misc behavior JS
ORGANIZE THE HTML CODE
Separate into functional part
<div class="hero">
<div class="hero-header"></div>
<div class="hero-header-title">Use the best, use Jobboard.</div>
<div class="hero-header-subtitle">and stay on top</div>
</div>
<div class="hero-calltoaction">
<button class="btn-register">Register</button>
</div>
</div>
.hero {
padding: 100px 0;
.hero-header { color: gray; }
.hero-header-title { font-size: 40px; }
.hero-header-subtitle { font-size: 20px; }
.hero-calltoaction { margin-top: 50px; }
}
.btn-register { color: white; background: orange; }
CSS styles can quickly become messy
ORGANIZE THE CSS CODE / ORGANIZE
So, we organize styles as :
1.  position
2.  display
3.  colors
4.  font
5.  miscellaneous
ORGANIZE THE CSS CODE / EXAMPLE
.myitem {
/* Position */
position: absolute;
top: 0;
/* Display */
display: block;
width: 100px;
height: 50px;
margin: 0 5px 20px 10px;
padding: 5px 5px;
/* Colors */
color: whitesmoke;
background: green;
/* Font */
font-family: 'Arial';
font-size: 12px;
/* Miscellaneous */
border-radius: 50%;
}
RESPONSIVE !
WHAT IS RESPONSIVE WEB DESIGN
(RWD) ?
Create a site which can be read across a wide range of
devices, from desktop to mobile.
Find screens size here : http://screensiz.es
(http://screensiz.es)
WHAT STRATEGY TO USE ?
1.  First, develop for desktop !
2.  Second, adapt mobile and tablet :)
USE @MEDIA QUERIES !
Example :
<div class="hero">…</div>
.hero { width: 960px; }
@media screen and (max-width: 768px) {
.hero { width: 600px; }
}
ENDING
TO GO FURTHER
Intégrer une maquette, Grafikart (french)
(http://www.grafikart.fr/tutoriels/html‐css/integration‐
front‐end‐497)
RESOURCES
UX :  , 
Fonts :  , 
Colors : 
Icons : 
Codrops (http://tympanus.net/codrops) Cody House
(http://codyhouse.co)
Google Fonts (http://www.google.com/fonts) Da
Font (http://www.dafont.com)
Adobe Color (https://color.adobe.com/)
Font Awesome
(http://fontawesome.github.io/Font‐Awesome)
TUTORIAL
INSTALLATION / MAC (BREW)
In a shell, execute :
$ brew install node
$ sudo npm -g install gulp grunt grunt-cli yo sass node-sass bower
INSTALLATION / UBUNTU
In a shell, execute :
$ curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
$ sudo apt-get install -y nodejs git
$ sudo npm -g install gulp grunt grunt-cli yo sass node-sass bower
INSTALLATION / WINDOWS
Download & Install 
Download & Install 
Download & Install 
Add python executable to the PATH
In a shell, execute :
Git Extensions
(https://code.google.com/p/gitextensions)
NodeJS 0.10.33
(http://nodejs.org/dist/v0.10.33)
Python 2.X.X
(https://www.python.org/downloads)
npm -g install gulp grunt grunt-cli yo sass node-sass bower
TUTORIAL / HERO
GET THE PROJECT
$ git clone https://github.com/fabienvauchelles/stweb-landingpage-tutor
ial.git
$ cd stweb-landingpage-tutorial/
$ npm install
$ bower install
$ git reset --hard q0
$ gulp serve
CREATE THE HERO
1.  Add the HTML in index.html
2.  Add the SCSS
TUTORIAL / FEATURES
GET THE NEXT STEP
$ git reset --hard q1
$ gulp serve
CREATE THE FEATURES
1.  Add the HTML in index.html
2.  Add the SCSS
TUTORIAL / BOOTSTRAP
GET THE NEXT STEP
$ git reset --hard q2
$ gulp serve
USE BOOTSTRAP
Use Bootstrap's columns for features
© Fabien Vauchelles (2015)
TUTORIAL / FINAL
GET AND READ THE SOLUCE
$ git reset --hard q3
$ gulp serve

More Related Content

What's hot

Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
Web topic 9 navigation and link
Web topic 9  navigation and linkWeb topic 9  navigation and link
Web topic 9 navigation and link
CK Yang
 

What's hot (20)

Joomla!Day 2013 Nürnberg; Vortrag von Johannes Hock
Joomla!Day 2013 Nürnberg; Vortrag von Johannes HockJoomla!Day 2013 Nürnberg; Vortrag von Johannes Hock
Joomla!Day 2013 Nürnberg; Vortrag von Johannes Hock
 
Developing Your Ultimate Package
Developing Your Ultimate PackageDeveloping Your Ultimate Package
Developing Your Ultimate Package
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
 
Bootstrap Framework
Bootstrap Framework Bootstrap Framework
Bootstrap Framework
 
Death of a Themer
Death of a ThemerDeath of a Themer
Death of a Themer
 
JavaScript Presentation Frameworks and Libraries
JavaScript Presentation Frameworks and LibrariesJavaScript Presentation Frameworks and Libraries
JavaScript Presentation Frameworks and Libraries
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and Techniques
 
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
 
How to use CSS3 in WordPress
How to use CSS3 in WordPressHow to use CSS3 in WordPress
How to use CSS3 in WordPress
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
 
Lastest Trends in Web Development
Lastest Trends in Web DevelopmentLastest Trends in Web Development
Lastest Trends in Web Development
 
CSS in React
CSS in ReactCSS in React
CSS in React
 
Web topic 9 navigation and link
Web topic 9  navigation and linkWeb topic 9  navigation and link
Web topic 9 navigation and link
 
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStartBest Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
Best Practices for Embedded UA - WritersUA 2012, Scott DeLoach, ClickStart
 
Responsive design
Responsive designResponsive design
Responsive design
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSS
 
Joomla Templates101
Joomla Templates101Joomla Templates101
Joomla Templates101
 
Responsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNNResponsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNN
 
Css responsive
Css responsiveCss responsive
Css responsive
 

Viewers also liked

Viewers also liked (11)

Zepto and the rise of the JavaScript Micro-Frameworks
Zepto and the rise of the JavaScript Micro-FrameworksZepto and the rise of the JavaScript Micro-Frameworks
Zepto and the rise of the JavaScript Micro-Frameworks
 
ECMA5 approach to building JavaScript frameworks with Anzor Bashkhaz
ECMA5 approach to building JavaScript frameworks with Anzor BashkhazECMA5 approach to building JavaScript frameworks with Anzor Bashkhaz
ECMA5 approach to building JavaScript frameworks with Anzor Bashkhaz
 
Javascript Framework Acessibiliity Review
Javascript Framework Acessibiliity ReviewJavascript Framework Acessibiliity Review
Javascript Framework Acessibiliity Review
 
Offline Mode - Web Applications Offline
Offline Mode - Web Applications OfflineOffline Mode - Web Applications Offline
Offline Mode - Web Applications Offline
 
Metaprogramming JavaScript
Metaprogramming  JavaScriptMetaprogramming  JavaScript
Metaprogramming JavaScript
 
Paweł Danielewski, Jak wygenerować 56% konwersji na Landing Page i 193.000 zł...
Paweł Danielewski, Jak wygenerować 56% konwersji na Landing Page i 193.000 zł...Paweł Danielewski, Jak wygenerować 56% konwersji na Landing Page i 193.000 zł...
Paweł Danielewski, Jak wygenerować 56% konwersji na Landing Page i 193.000 zł...
 
Creating responsive landing pages using LeadSquared
Creating responsive landing pages using LeadSquaredCreating responsive landing pages using LeadSquared
Creating responsive landing pages using LeadSquared
 
WebApps e Frameworks Javascript
WebApps e Frameworks JavascriptWebApps e Frameworks Javascript
WebApps e Frameworks Javascript
 
50 Landing Page Best Practices
50 Landing Page Best Practices50 Landing Page Best Practices
50 Landing Page Best Practices
 
Unobtrusive JavaScript with jQuery
Unobtrusive JavaScript with jQueryUnobtrusive JavaScript with jQuery
Unobtrusive JavaScript with jQuery
 
Writing Efficient JavaScript
Writing Efficient JavaScriptWriting Efficient JavaScript
Writing Efficient JavaScript
 

Similar to Create a landing page

GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
vathur
 
New Elements & Features in CSS3
New Elements & Features in CSS3New Elements & Features in CSS3
New Elements & Features in CSS3
Jamshid Hashimi
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Erin M. Kidwell
 
Module 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel DownsModule 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel Downs
Daniel Downs
 

Similar to Create a landing page (20)

HTML5, the new buzzword
HTML5, the new buzzwordHTML5, the new buzzword
HTML5, the new buzzword
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
CSS Architecture - JSIL.pdf
CSS Architecture - JSIL.pdfCSS Architecture - JSIL.pdf
CSS Architecture - JSIL.pdf
 
Html5 & less css
Html5 & less cssHtml5 & less css
Html5 & less css
 
Pfnp slides
Pfnp slidesPfnp slides
Pfnp slides
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
 
It's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking ModernizrIt's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking Modernizr
 
Team styles
Team stylesTeam styles
Team styles
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
HTML & CSS 2017
HTML & CSS 2017HTML & CSS 2017
HTML & CSS 2017
 
Managing responsive websites with css preprocessors.
Managing responsive websites with css preprocessors. Managing responsive websites with css preprocessors.
Managing responsive websites with css preprocessors.
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
New Elements & Features in CSS3
New Elements & Features in CSS3New Elements & Features in CSS3
New Elements & Features in CSS3
 
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
 
A Complete Guide to Frontend - UI Developer
A Complete Guide to Frontend - UI DeveloperA Complete Guide to Frontend - UI Developer
A Complete Guide to Frontend - UI Developer
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
 
Module 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel DownsModule 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel Downs
 
Building Responsive Websites with Drupal
Building Responsive Websites with DrupalBuilding Responsive Websites with Drupal
Building Responsive Websites with Drupal
 

More from Fabien Vauchelles (9)

Use Node.js to create a REST API
Use Node.js to create a REST APIUse Node.js to create a REST API
Use Node.js to create a REST API
 
Design a landing page
Design a landing pageDesign a landing page
Design a landing page
 
Using MongoDB
Using MongoDBUsing MongoDB
Using MongoDB
 
De l'idée au produit en lean startup IT
De l'idée au produit en lean startup ITDe l'idée au produit en lean startup IT
De l'idée au produit en lean startup IT
 
Créer une startup
Créer une startupCréer une startup
Créer une startup
 
What is NoSQL ?
What is NoSQL ?What is NoSQL ?
What is NoSQL ?
 
Master AngularJS
Master AngularJSMaster AngularJS
Master AngularJS
 
Discover AngularJS
Discover AngularJSDiscover AngularJS
Discover AngularJS
 
Comment OAuth autorise ces applications à accéder à nos données privées ?
Comment OAuth autorise ces applications à accéder à nos données privées ?Comment OAuth autorise ces applications à accéder à nos données privées ?
Comment OAuth autorise ces applications à accéder à nos données privées ?
 

Recently uploaded

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 

Recently uploaded (20)

Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 

Create a landing page