BEFORE YOU START
Learn the fundamentals
Whether it's sign-up forms, automation workflows or designing and sending your first email campaign - we got you covered.
Start learning
{% assign beginner_courses = 0 | times: 1 %}
{% for course in courses.in_catalog %}
{% if course.properties.beginner %}
{% include 'homepage_beginning_course_card' with course %}
{% assign beginner_courses = beginner_courses | plus: 1 %}
{% if beginner_courses == 3 %} {% break %} {% endif %}
{% endif %}
{% endfor %}