Skip to content

jamesqquick/Core-Fundamentals-of-Web-Development

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Core-Fundamentals-of-Web-Development

Find me on twitter at @jamesqquick and use the hashtag #CoreWebDev

Intro

Go to the Video

Welcome to Core Fundamentals of Web Development! In this course, we will use pure HTML, CSS, and Javascript (no libraries or frameworks!!) to create a Link Saver application. The hope is that by foregoing all of the libraries and frameworks out there, we will increase our core knowledge and understanding of how different aspects of web development will work. This course is designed for Beginner to Intermediate Web Developers who are looking to learn new concepts or reinforce ones they've already been exposed to. The content is initially scheduled for 15 videos, but I am hoping to follow up with some bonus material based on your feedback! If you would like to see any additional topics covered, let me know on twitter, @jamesqquick

People I Follow/ Additional Resources

Topics We Will Cover

  • CSS Variables and Resets
  • CSS Flexbox
  • Core Javascript (working with and manipulating DOM elements, creating event listeners, and creating and handling form submissions)
  • New features of Javascript as of ES6 (arrow functions, const and let, 'let of' loop, template literals)
  • Media Queries and Responsive Design
  • CSS Transitions and Animations

Format

In this course, we will progressively build a web application. With each new video, we will introduce a new topic, talk about its use and functionality, and then include it in our application. Several of the topics we discuss will be touched on but not covered in depth. You will need to explore deeper topics such as Flexbox, the 'This' keyword, and Arrow Functions on your own to truly master them. For most sections, there are several reference links for more guidance.

1. Getting Familiar With the Tools (Visual Studio Code, Google Chrome, and Chrome Developer Tools)

Go to the video

Go to the Source Code

In this video, we will talk about the tools we will be using in this course. I want to make sure that everyone is on the same page as we progress throughout the course. We will talk about various shortcuts and extensions in Visual Studio Code as well as a brief introduction to the Chrome Developer Tools to inspect elements and their styles as well as the console to inspect output from out Javascript. It is highly recommended that you attempt to follow along and use the shortcuts that are available as they will help speed up your development process in the future!

References

2. Creating The App Skeleton

Go to the video

Go to the Source Code

In this video, we will stub out the basic structure of our application. We will create placeholders in our HTML for our Navbar, our Add Link Form, and our Links List display. We will also perform some setup in CSS by creating CSS Variables for our application colors, defining basic resets to standardize rendering across browsers, and organizing our CSS file into sections.

References

3. Introduction to Flexbox and Building the Navbar

Go to the video

Go to the Source Code

In this video, we will get introduced to Flexbox, which provides a more efficient way to lay out, align, and distribute space among items in a container. With Flexbox, we can address problems easily that, in the past, were hard to solve such as vertically centering content inside of a parent, providing equal space to children of a container, and ensuring a consistent height across multiple columns of varied content. We will specifically leverage Flexbox to build a simple navigation navigation bar that contains a title and an add button.

References

4. Creating and Styling Forms

Go to the video

Go to the Source Code

In this video, we are going to create the form that users will leverage to add new links. This form will have three inputs: title, url, and a list of categories (all comma separated). We will also include two buttons, one to submit the form, and one to cancel and close the form itself.

References

5. Working with DOM Elements, Event Listeners, ES6 CONST and LET

Go to the video

Go to the Source Code

In this video, we will add the functionality to accept comma separated input from the user for a list of categories. When a user types a comma into the categories input, we will save that category and clear out the input for him/her to keep typing and add more. To do this, we will need to reference DOM elements in our Javascript. As we do, we will discuss the difference between VAR keyword and the newer CONST and LET keywords.

References

6. Arrow Functions and the This Keyword

Go to the video

Go to the Source Code

In this video, we will add functionality to the add button of our form. When the user submits the form, we will extract the form input, create a new "Link" object from that input, and add it to an array. As we do this, we will update our callback function syntax from using traditional callbacks to use ES6 Arrow Functions and discuss its impact on the This keyword.

References

7. Adding and Removing Classes in Javascript

Go to the video

Go to the Source Code

In this videos, we will add the functionality to show and hide the add link form. We will accomplish this by adding/removing the 'hidden' class to/from the form. This video will help to reinfornce topics from the previous two videos: working with DOM elements, event listeners, defining variables with ES6 Let and Const, and ES6 Arrow Functions. Additionally, we will learn how to add and remove classes from a DOM element in Javascript.

References

8. Displaying Static Link

Go to the video

Go to the Source Code

In this video, we will take a break from Javascript and come back to our HTML and CSS to display a static link. In the following video, we will take this code as the template to generate dynamic HTML strings for each of the added links.

9. Generating Dynamic HTML with Es6 Template Literals

Go to the video

Go to the Source Code

In this video, we will use the ES6 'For Of' loop to iterate through the array of added links. For each of the link objects, we will use the HTML template from the previous video to dynamically generate the appropriate HTML string for each of the users added links. To help use generate the HTML strings, we will take advantage of ES6 Template Literals.

References

10. Adding Edit and Delete Functionality

Go to the video

Go to the Source Code

In this video, we will add the ability to edit and delete links. We will save code by reusing the same add link form and event listener, both when a user is adding a new link and editing an old link. This video will serve as a reinforcement of previous videos in working with DOM elements, event listeners, arrow functions, etc.

11. Responsive Design With Flexbox

Go to the video

Go to the Source Code

In this video, we will update our application to make it more responsive and mobile friendly because we want our application to look great on all types of devices. We will get introduced to media queries which allow us to define specific styles that are only applied when the width of the screen is within a certain range. We will additionally use Flexbox to create a basic grid system for our display of links and update our header to stack the title and add button vertically when on smaller screens.

References

12. Applying Transitions

Go to the video

Go to the Source Code

In this video, we will get introduced to CSS Transitions and apply them to several elements in our applications. We will discuss the shorthand syntax for defining transitions as well as touch on the most performant properties to transition on (translate, rotate, scale, and opacity);

References

13. Full Screen Popups

Go to the video

Go to the Source Code

In this video, we will create a full screen popup for our add link form. This way it does not push down our links list content when the user wants to add a link. This full screen popup can be used in many ways (logins/register forms, loading icons, etc.). It will take up the entire width and height of the window with a semi transparent dark background. This lets the user know that they are unable to interact with anything in the background until loading has finished, they complete a form, etc.

14. Animations

Go to the video

Go to the Source Code

In this video, we will get introduced to CSS Animations. We will create simple animations like slide right and shake before creating the slide down transition that will be used for our add link form. We will discuss how animations can be used to provide useful feedback and context to the user.

References

15. Cleanup

Go to the video

Go to the Source Code

In this video, we will clean up our application a bit by correctly displaying the date a link was created, removing unnecessary HTML, and adding a hover effect to our links.

References

Course Wrap Up

Go to the video

In this video, we will reflect on everything that we've covered, which is a lot! We've taken at least an intermediate dive in HTML, CSS, and Javascript. We've focused on the core aspects of Web Development, skills that will take you far. No matter what framework or library you use in the future, you now have a better understanding of how they work and what they are taking care of for you.

References

Bonus Topics??

If you enjoyed the content, have suggestions/critiques, or would like to see some bonus topics covered, let me know on twitter at @jamesQquick!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published