Basics of HTML and CSS
Level: basic
Simple assignments to introduce the basics of web development, HTML and CSS.
Create a simple HTML page, understand what tags it consists of and what these tags are responsible for. Connect CSS and JavaScript to the page.
Learn how to add text content to a simple HTML page: paragraphs, headings, subheadings, lists, and more.
Learn how to work with backgrounds and connect background images. Explore popular techniques for creating decorative effects.
You'll deal with the most popular CSS properties for text styling.
JavaScript Basics
Level: basic
Simple tasks to get acquainted with JavaScript. Learn how to modify web pages with the help of scripts, implement a theme switcher and a subscription form, and get acquainted with the console.
Implement likes counter, learn how to search for elements, save them to variables and change their content. Practice using conditions.
Write a simple commenting system, learn how to create new elements, set their content and properties and insert these elements into the page.
Implement tooltips on the page, learn how to search for collections of elements and work with these collections. Practice using loops.
Fundamentals of Algorithms and Data Structures
Level: basic
Get acquainted with the basic principles of programming, practice using simple commands and get introduced to data types.
Learn what variables are, how to create variables and set their values. Find out about operation priorities and write your first program.
Learn how to use simple conditions, get acquainted with comparison operators, learn how to compare different types of data.
Work with complex conditions and learn how to use nested conditions. Get acquainted with logical operators and learn how to combine them.
Understand the structure of the for
loop, learn what an initialisation command, a break condition and the law of change are. Learn how to run loops in forward and reverse order.
Learn how to use conditions inside loops, discover how to define even and odd values of a counter variable. Get acquainted with the "accumulation inside a loop" technique and shortened mathematical operators.
Get acquainted with loops with an unknown number of iterations. Understand the structure of the while
loop, the break
and continue
operators, learn how to protect against infinite loops and write a small game.
Creating a Complex HTML Page
Level: advanced
Learn how to use links and insert images into the page, understand relative and absolute addresses. Explore popular image formats. Learn what vector and raster graphics are.
Learn how to properly mark up large blocks of pages: header, footer, main content, navigation, find out how <section>
and <article>
differ and understand what "semantic markup" is.
Dive into the details of text markup, study tags for marking different types of quotations, programming code, date and time, lower and upper indices. Understand how to use mnemonics. Learn how to properly use universal containers - <div>
and <span>
.
Practice inserting audio and video into the page, connecting and using non-standard fonts. Learn other advanced HTML5 features.
Dive into CSS
Level: advanced
Learn the basic concepts of CSS: rules, selectors, properties, values. Get acquainted with the types of properties and values.
Learn how to use simple and advanced selectors, pseudoclasses, and how to combine them.
Figure out what inheritance, cascading, specificity are and how to use them.
Explore advanced selectors such as :nth-of-type
or :only-child
, learn how to use pseudoelements such as ::before
and ::after
.
Dive into JavaScript
Level: advanced
Learn what the DOM API is, work with templates, get acquainted with new events and methods for DOM manipulation, clone elements, and develop a to-do list application.
Learn what events occur when forms are submitted, text is entered into fields, and field values are changed, practice handling these events and control the behaviour of forms and fields. Get acquainted with data validation.
Get acquainted with APIs that allow us to get data about the browser state and control it, learn how to control scrolling and implement the "Back to Top" component.
Learn how to change element styles using the style
property and data from input fields. Program a panel with color and size settings for text on the page.
Advanced Algorithms and Data Structures
Level: advanced
Write your first array sorting algorithm from scratch. Learn how to use nested loops, get acquainted with different sorting algorithms and find out how they differ.
Have a look at the methods of an object, learn how to create and call methods. Learn how to access properties and other methods of an object from within methods using the this
keyword. Write your first program in object-oriented style.