SlideShare a Scribd company logo
Life is not static — your
designs shouldn’t be either
A primer for evolving design workflows
Presented by Dan Arbello at No Code Conference 2019
Access this presentation at danarbello.com/ncc-in-medium »
Since October 2019
Senior Front-end
Designer & Developer
Since 2005
Print & Digital
Designer
Definitions
Introduction
The Pitfalls of Static Design
The Benefits of In-Medium
Action
The Mindset (of in-medium)
The Styles (CSS)
Summary Conclusion
Resources (for later)
Q&A
Agenda
Definitions
Designers
A designer brings together sociology, psychology,
aesthetic, and contemporary trends to create
context-relevant experiences.
Developers
Builds the experience by balancing the
designs and the technology behind it
(performance, maintenance, compatibility).
Everyone
Create for the sake of as many
users as possible; all bodies,
minds, and desires.
Introduction
Static
vs
In-Medium
The Pitfalls
Of Static Design
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
This is what static
reviews look like.
This is what in-medium
review looks like.
The Benefits of In-Medium
Stop designing inside of a vacuum. Take the
user’s seat while you are designing, not after
development finishes.
Design like you’re the end user
Artboards = Time x 3
Trash your artboards. You don’t need
several artboards for every breakpoint per
page design.
Instead of beating around bushes
with static designs, wireframes,
and artboard-based prototypes,
use in-medium to speak the same
language as developers. You will
see visual designs, the developers
will see function and code.
Speak the same
language
Instead of waiting for development to produce what you’ve
designed, generate a functioning prototype that will feel virtually
the same as the end product. This allows:
● strategy to sell an idea with more meat before too many
resources are burned,
● clients to review and approve things without wearing
a creative’s hat,
● engineers to estimate and plan earlier,
● and design to be more thoughtful and
environment-/-platform-aware.
Show the product sooner
Your team has a great idea. But there
Are no examples in the wild, or sharing
that example isn’t an option. Help your
team express breakthrough concepts
beyond words in a proposal.
Supporting Strategy
The 10hr Visual Sales Pitch
Take preliminary findings from user data, basic
psychology, competitor research, and intuition to
ideate and develop a single, but powerful, feature
optimization or addition.
User testing,
but for real.
You don’t have to choose between
sketched wireframes, static comps,
half-static prototypes, or going to dev
quickly when it comes to testing designs.
Stop relying on the polar opposites of
options and test your actual in-medium
designs with real people.
1. Will this take developers jobs? No.
2. As a designer, will I be expected to contribute to production code?
Let’s hope not, but also maybe a little 😏
3. How do I get training beyond Webflow University? Many, many options.
4. What is the average training time? 1-2 months
5. Is this helpful for my resume? Leveling up is always a plus.
6. Is doing this with design workflows unique? So far: very.
Convincing the team
Action
The Mindset
The circle box of life
There is a semantic rhythm to the web…
in the form of boxes. Everything is a box,
but that’s okay. Clean up after yourself by
packing boxes appropriately.
The Family Nest
<!-- HTML Markup Example -->
<div class=”bird”> <!-- the parent -->
<div class=”egg”> <!-- a child -->
</div>
<div class=”egg”> <!-- a child -->
</div>
</div>
/* You can use “pseudoclasses” to do cool
things like this */
.egg:nth-child(2) {
background: blue;
}
In HTML, there are parents and children.
Children are also siblings to each other.
The browser is a flexible
window.
Internet browsers aren’t fixed into set widths
and heights foretold by breakpoints (mobile,
tablet, desktop, and so on). Rather, it is fluid
and flexible.
Use breakpoints
where it makes sense
You are not restricted to the Designer
view breakpoint UI. In CSS, this break-
point is declared with media and then
the value of the browser window width
when you want the change to start
occuring.
Inside an HTML Embed element:
Webflow breakpoint UI buttons:
<style>
@media (max-width: 768px) {
.classname-to-change {
font-size: 20px;
}
}
</style>
If… then… or else…
Design for real world content.
The world is not one size fits all, and neither
is content for the web. Ensure your designs
consider variation and scalability.
Medium limitations are
crucial to designing anything
worth experiencing.
Sketch the markup.
Sketch the design,
if you must.
Move to in-medium
to design and perfect.
Unless you are building a Webflow-hosted
instance, remember to treat your designs
as what they are: designs. Do not get stuck
in the particulars.
Don’t get it twisted
⚠
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
Inheritance
Styles will naturally inherit those set
on its parents. This can be used to
your advantage. Refrain from repeating
yourself and “set it and forget it”
whenever possible.
Giving a class a name
makes it unique and
reusable.
/* CSS Styles */
.apple {
sweet;
red;
tangy;
tree-fruit;
}
<!-- HTML Markup -->
<div class=”apple”>
</div>
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
We can start to say things
about elements (children)
of an apple./* child classes */
.apple__stem {
woody;
brown;
inedible;
}
.apple__leaf {
crisp;
green;
translucent;
}
But, not all apples are red!
/* modifier classes */
.apple--green {
green;
sour;
grandma’s;
}
.apple--rotten {
unhealthy;
smelly;
moldy;
}
<!-- HTML Markup -->
<div class=”apple apple--rotten”>
<div class=”apple__stem”></div>
<div class=”apple__leaf”></div>
</div>
Bring it all together to
create complex designs.
/* CSS Styles */
.apple--rotten {
inedible;
smelly;
Moldy;
/* nested styles */
.apple__stem {
shriveled;
black;
}
.apple__leaf {
dry;
brown;
opaque;
}
}
Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop
What this looks like
in Webflow…
Since free dragging and placement isn’t
an option we are given properties that
allow us to break out of this flow.
Positioning
Controlling the display
of flow
There are five important display values
used to specify the basics of how that
content (or its children’s content, in the
case of flex and grid) should be rendered.
Now that’s what I call display 😎
Don’t be afraid of flexbox and grid. They are the present and
continued future of layout design… and there is more to come.
Conclusion
👯‍♂ Get ahead of the curve and bring digital medium into your design
workflow. Show the product sooner to benefit your team, sales, and
user testing.
🤳 Up your design game by experiencing the design sooner,
in turn allowing for a better understanding of how your experiences
will actually be experienced in the wild.
❤ Have better relationships with your team and clients by speaking
the same language.
Three good reasons to go in-medium:
Resources
🙅‍♂Multi-user Support & Team Versioning
Multi-user collaboration — similar to how developers maintain their
collaborative and synchronous workflow — is not yet a feature of
Webflow. Until it is, only one individual can work on the site at a time.
There are two wishlist tickets up for this. Put your votes in!
● https://wishlist.webflow.com/ideas/WEBFLOW-I-39
● https://wishlist.webflow.com/ideas/WEBFLOW-I-2100
📚There’s more material in the wild…
📓 Webflow’s own 10 reasons why design
teams should use Webflow »
📓 Free learning library: Webflow
University »
📓 Download Firefox and use Inspector
when you get stuck: Demo »
📓 Design Code’s ($) Webflow Course »
📓 Nelson Abalos’ Live Streams »
📓 Get great ideas and see how the
person made it: Codepen »
📓 Extensive code syntax and
specifications: MDN web docs »
📓 Ask the world for solutions:
StackOverflow Questions »
📓 Jennifer Parson’s extensive list of
resources »
Q & A & Thank You
Access this presentation at danarbello.com/ncc-in-medium »

More Related Content

PDF
Building landing pages at scale at InVision - No Code Conf 2019
PDF
no code ≠ no development: development workflow for non-developers - No Code C...
PDF
No code stewardship - No Code Conf 2019 Demo Theater
PDF
Everything you ever wanted to know about Webflow Interactions - No Code Conf ...
PDF
Ship your product with zero code - No Code Conf 2019 Workshop
PDF
Front End Development
PDF
It takes a village: workflows to enable code/no-code collaboration - No Code ...
PDF
Taking back your website: a playbook for reclaiming your most valuable digita...
Building landing pages at scale at InVision - No Code Conf 2019
no code ≠ no development: development workflow for non-developers - No Code C...
No code stewardship - No Code Conf 2019 Demo Theater
Everything you ever wanted to know about Webflow Interactions - No Code Conf ...
Ship your product with zero code - No Code Conf 2019 Workshop
Front End Development
It takes a village: workflows to enable code/no-code collaboration - No Code ...
Taking back your website: a playbook for reclaiming your most valuable digita...

What's hot (17)

PDF
How HelloSign rebuilt their site without code - No Code Conf 2019 Demo Theater
PDF
How we Webflow at Webflow - No Code Conf 2019 Demo Theater
PDF
6 Things to Think About Before Building Your Website
PDF
Web Development Life Cycle - Tihalt
PDF
Presentation
PDF
web design service
PPT
Developing a practical HTML5 magazine workflow
PDF
WordPress for Software Development
PDF
7 Tips for Design Teams Collaborating Remotely
PDF
Interactive Design Basics
PDF
Typography and Colors for GUI Designers
PDF
Portfolio Pro Tips
PPT
Microsoft Webday 2008 - Silverlight Experiences
PDF
Frontend Development vs Backend Development | Detailed Comparison
PDF
Building a UX Portfolio
PPTX
Top 15 Start up Questions in Web design field
PDF
Exploring the design process #wcchi
How HelloSign rebuilt their site without code - No Code Conf 2019 Demo Theater
How we Webflow at Webflow - No Code Conf 2019 Demo Theater
6 Things to Think About Before Building Your Website
Web Development Life Cycle - Tihalt
Presentation
web design service
Developing a practical HTML5 magazine workflow
WordPress for Software Development
7 Tips for Design Teams Collaborating Remotely
Interactive Design Basics
Typography and Colors for GUI Designers
Portfolio Pro Tips
Microsoft Webday 2008 - Silverlight Experiences
Frontend Development vs Backend Development | Detailed Comparison
Building a UX Portfolio
Top 15 Start up Questions in Web design field
Exploring the design process #wcchi
Ad

Similar to Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop (20)

PDF
Creating UI Marketers Won't F*Up
PPTX
Code-Editor-Unleashing-Creativity-with-HTML-CSS-and-JavaScript.pptx
PDF
Is everything we used to do wrong?
PPTX
User Testing your Drupal Administration Process
PDF
User Interface is King: Developing a Web App UI
PDF
Programming for Non-Programmers - SXSW Vegas 2014
PDF
Jennifer Robbins: ARTIFACT Conference Keynote
PDF
A Future Friendly Workflow
PDF
Jennifer Robbins: ARTIFACT EAST Keynote (Providence, 11/4/13)
PDF
The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)
PDF
Next Level Collaboration: The Future of Content and Web Design
PDF
"Content First." Presentation - 2014 MSU IT Conference
PPTX
Developing for the unknown lavacon
PPTX
Developing for the unknown lavacon
PPTX
Why Can't We All Just Get Along? Improving Designer/Developer Collaboration
PDF
Tdf responsive design101_v1
PDF
Next Level Collaboration: The Future of Content & Web Design at Future Insigh...
PDF
Programming for Non-programmers PFNP @ Razorfish
PDF
10 Worst Mistakes in SharePoint Branding
PDF
Embracing Uncertainty: Learning to Think Responsively
Creating UI Marketers Won't F*Up
Code-Editor-Unleashing-Creativity-with-HTML-CSS-and-JavaScript.pptx
Is everything we used to do wrong?
User Testing your Drupal Administration Process
User Interface is King: Developing a Web App UI
Programming for Non-Programmers - SXSW Vegas 2014
Jennifer Robbins: ARTIFACT Conference Keynote
A Future Friendly Workflow
Jennifer Robbins: ARTIFACT EAST Keynote (Providence, 11/4/13)
The Death of Lorem Ipsum and Pixel-Perfect Content (MinneWebCon version)
Next Level Collaboration: The Future of Content and Web Design
"Content First." Presentation - 2014 MSU IT Conference
Developing for the unknown lavacon
Developing for the unknown lavacon
Why Can't We All Just Get Along? Improving Designer/Developer Collaboration
Tdf responsive design101_v1
Next Level Collaboration: The Future of Content & Web Design at Future Insigh...
Programming for Non-programmers PFNP @ Razorfish
10 Worst Mistakes in SharePoint Branding
Embracing Uncertainty: Learning to Think Responsively
Ad

More from Webflow (20)

PDF
I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
PDF
After Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
PDF
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
PDF
Empower your local community to join the No Code revolution - No Code Conf 20...
PDF
How to end youth homelessness - No Code Conf 2019 Demo Theater
PDF
What happens when anyone can make an app? - No Code Conf 2019 Demo Theater
PDF
Working with APIs as a no-coder - No Code Conf 2019 Demo Theater
PDF
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
PDF
How to work faster by building your design systems with Webflow - No Code Con...
PDF
Building 50+ products without code - No Code Conf 2019 Workshop
PDF
How to build a marketplace without code - No Code Conf 2019 Workshop
PDF
The accidental web designer - No Code Conf 2019 Workshop
PDF
The no-code tech stack: how to build a tech company with no-code tools and so...
PDF
Making automation feel more human - No Code Conf 2019
PDF
The longstanding influence of no-code platforms: from digital participation t...
PDF
Building no-code tools alongside your engineering team - No Code Conf 2019
PDF
Building no-code tools and applications from spreadsheets - No Code Conf 2019
PDF
Innovate like a boss with no code - No Code Conf 2019
PDF
No code for marginalized communities - No Code Conf 2019
PDF
No code can transform businesses at any scale - No Code Conf 2019
I built & sold 12 no -ode apps in 12 weeks - here's everything I learned - No...
After Effects & Lottie in Webflow - No Code Conf 2019 Demo Theater
Forms + Zaps = No Code Apps - No Code Conf 2019 Demo Theater
Empower your local community to join the No Code revolution - No Code Conf 20...
How to end youth homelessness - No Code Conf 2019 Demo Theater
What happens when anyone can make an app? - No Code Conf 2019 Demo Theater
Working with APIs as a no-coder - No Code Conf 2019 Demo Theater
Typeform: Duct tape for entrepreneurs - No Code Conf 2019 Demo Theater
How to work faster by building your design systems with Webflow - No Code Con...
Building 50+ products without code - No Code Conf 2019 Workshop
How to build a marketplace without code - No Code Conf 2019 Workshop
The accidental web designer - No Code Conf 2019 Workshop
The no-code tech stack: how to build a tech company with no-code tools and so...
Making automation feel more human - No Code Conf 2019
The longstanding influence of no-code platforms: from digital participation t...
Building no-code tools alongside your engineering team - No Code Conf 2019
Building no-code tools and applications from spreadsheets - No Code Conf 2019
Innovate like a boss with no code - No Code Conf 2019
No code for marginalized communities - No Code Conf 2019
No code can transform businesses at any scale - No Code Conf 2019

Recently uploaded (20)

PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPT
Teaching material agriculture food technology
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Cloud computing and distributed systems.
PDF
Encapsulation_ Review paper, used for researhc scholars
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Electronic commerce courselecture one. Pdf
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Machine learning based COVID-19 study performance prediction
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
NewMind AI Monthly Chronicles - July 2025
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Chapter 3 Spatial Domain Image Processing.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
20250228 LYD VKU AI Blended-Learning.pptx
Teaching material agriculture food technology
Unlocking AI with Model Context Protocol (MCP)
Cloud computing and distributed systems.
Encapsulation_ Review paper, used for researhc scholars
“AI and Expert System Decision Support & Business Intelligence Systems”
Electronic commerce courselecture one. Pdf
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Spectral efficient network and resource selection model in 5G networks
Building Integrated photovoltaic BIPV_UPV.pdf
Machine learning based COVID-19 study performance prediction
Mobile App Security Testing_ A Comprehensive Guide.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Network Security Unit 5.pdf for BCA BBA.
Agricultural_Statistics_at_a_Glance_2022_0.pdf

Life is not static - your designs shouldn't be either - No Code Conf 2019 Workshop

  • 1. Life is not static — your designs shouldn’t be either A primer for evolving design workflows Presented by Dan Arbello at No Code Conference 2019 Access this presentation at danarbello.com/ncc-in-medium »
  • 2. Since October 2019 Senior Front-end Designer & Developer Since 2005 Print & Digital Designer
  • 3. Definitions Introduction The Pitfalls of Static Design The Benefits of In-Medium Action The Mindset (of in-medium) The Styles (CSS) Summary Conclusion Resources (for later) Q&A Agenda
  • 5. Designers A designer brings together sociology, psychology, aesthetic, and contemporary trends to create context-relevant experiences.
  • 6. Developers Builds the experience by balancing the designs and the technology behind it (performance, maintenance, compatibility).
  • 7. Everyone Create for the sake of as many users as possible; all bodies, minds, and desires.
  • 16. This is what static reviews look like.
  • 17. This is what in-medium review looks like.
  • 18. The Benefits of In-Medium
  • 19. Stop designing inside of a vacuum. Take the user’s seat while you are designing, not after development finishes. Design like you’re the end user
  • 20. Artboards = Time x 3 Trash your artboards. You don’t need several artboards for every breakpoint per page design.
  • 21. Instead of beating around bushes with static designs, wireframes, and artboard-based prototypes, use in-medium to speak the same language as developers. You will see visual designs, the developers will see function and code. Speak the same language
  • 22. Instead of waiting for development to produce what you’ve designed, generate a functioning prototype that will feel virtually the same as the end product. This allows: ● strategy to sell an idea with more meat before too many resources are burned, ● clients to review and approve things without wearing a creative’s hat, ● engineers to estimate and plan earlier, ● and design to be more thoughtful and environment-/-platform-aware. Show the product sooner
  • 23. Your team has a great idea. But there Are no examples in the wild, or sharing that example isn’t an option. Help your team express breakthrough concepts beyond words in a proposal. Supporting Strategy
  • 24. The 10hr Visual Sales Pitch Take preliminary findings from user data, basic psychology, competitor research, and intuition to ideate and develop a single, but powerful, feature optimization or addition.
  • 25. User testing, but for real. You don’t have to choose between sketched wireframes, static comps, half-static prototypes, or going to dev quickly when it comes to testing designs. Stop relying on the polar opposites of options and test your actual in-medium designs with real people.
  • 26. 1. Will this take developers jobs? No. 2. As a designer, will I be expected to contribute to production code? Let’s hope not, but also maybe a little 😏 3. How do I get training beyond Webflow University? Many, many options. 4. What is the average training time? 1-2 months 5. Is this helpful for my resume? Leveling up is always a plus. 6. Is doing this with design workflows unique? So far: very. Convincing the team
  • 29. The circle box of life There is a semantic rhythm to the web… in the form of boxes. Everything is a box, but that’s okay. Clean up after yourself by packing boxes appropriately.
  • 30. The Family Nest <!-- HTML Markup Example --> <div class=”bird”> <!-- the parent --> <div class=”egg”> <!-- a child --> </div> <div class=”egg”> <!-- a child --> </div> </div> /* You can use “pseudoclasses” to do cool things like this */ .egg:nth-child(2) { background: blue; } In HTML, there are parents and children. Children are also siblings to each other.
  • 31. The browser is a flexible window. Internet browsers aren’t fixed into set widths and heights foretold by breakpoints (mobile, tablet, desktop, and so on). Rather, it is fluid and flexible.
  • 32. Use breakpoints where it makes sense You are not restricted to the Designer view breakpoint UI. In CSS, this break- point is declared with media and then the value of the browser window width when you want the change to start occuring. Inside an HTML Embed element: Webflow breakpoint UI buttons: <style> @media (max-width: 768px) { .classname-to-change { font-size: 20px; } } </style>
  • 33. If… then… or else… Design for real world content. The world is not one size fits all, and neither is content for the web. Ensure your designs consider variation and scalability.
  • 34. Medium limitations are crucial to designing anything worth experiencing.
  • 37. Move to in-medium to design and perfect.
  • 38. Unless you are building a Webflow-hosted instance, remember to treat your designs as what they are: designs. Do not get stuck in the particulars. Don’t get it twisted ⚠
  • 40. Inheritance Styles will naturally inherit those set on its parents. This can be used to your advantage. Refrain from repeating yourself and “set it and forget it” whenever possible.
  • 41. Giving a class a name makes it unique and reusable. /* CSS Styles */ .apple { sweet; red; tangy; tree-fruit; } <!-- HTML Markup --> <div class=”apple”> </div>
  • 43. We can start to say things about elements (children) of an apple./* child classes */ .apple__stem { woody; brown; inedible; } .apple__leaf { crisp; green; translucent; }
  • 44. But, not all apples are red! /* modifier classes */ .apple--green { green; sour; grandma’s; } .apple--rotten { unhealthy; smelly; moldy; }
  • 45. <!-- HTML Markup --> <div class=”apple apple--rotten”> <div class=”apple__stem”></div> <div class=”apple__leaf”></div> </div> Bring it all together to create complex designs. /* CSS Styles */ .apple--rotten { inedible; smelly; Moldy; /* nested styles */ .apple__stem { shriveled; black; } .apple__leaf { dry; brown; opaque; } }
  • 47. What this looks like in Webflow…
  • 48. Since free dragging and placement isn’t an option we are given properties that allow us to break out of this flow. Positioning
  • 49. Controlling the display of flow There are five important display values used to specify the basics of how that content (or its children’s content, in the case of flex and grid) should be rendered.
  • 50. Now that’s what I call display 😎 Don’t be afraid of flexbox and grid. They are the present and continued future of layout design… and there is more to come.
  • 52. 👯‍♂ Get ahead of the curve and bring digital medium into your design workflow. Show the product sooner to benefit your team, sales, and user testing. 🤳 Up your design game by experiencing the design sooner, in turn allowing for a better understanding of how your experiences will actually be experienced in the wild. ❤ Have better relationships with your team and clients by speaking the same language. Three good reasons to go in-medium:
  • 54. 🙅‍♂Multi-user Support & Team Versioning Multi-user collaboration — similar to how developers maintain their collaborative and synchronous workflow — is not yet a feature of Webflow. Until it is, only one individual can work on the site at a time. There are two wishlist tickets up for this. Put your votes in! ● https://wishlist.webflow.com/ideas/WEBFLOW-I-39 ● https://wishlist.webflow.com/ideas/WEBFLOW-I-2100
  • 55. 📚There’s more material in the wild… 📓 Webflow’s own 10 reasons why design teams should use Webflow » 📓 Free learning library: Webflow University » 📓 Download Firefox and use Inspector when you get stuck: Demo » 📓 Design Code’s ($) Webflow Course » 📓 Nelson Abalos’ Live Streams » 📓 Get great ideas and see how the person made it: Codepen » 📓 Extensive code syntax and specifications: MDN web docs » 📓 Ask the world for solutions: StackOverflow Questions » 📓 Jennifer Parson’s extensive list of resources »
  • 56. Q & A & Thank You Access this presentation at danarbello.com/ncc-in-medium »