- Frontend Interview Questions
- HTML
- What is the difference between a
<span>
and a<div>
? - Name 5 common block-level and inline HTML elements.
- Define semantic markup. What are the semantic meanings for
<section>
,<article>
,<aside>
,<nav>
,<header>
,<footer>
and when/how should each be used in structuring html markup? - What is the difference between (
<i>
and<em>
) and (<b>
,<strong>
) and how will screen-readers react the to each tag?
- What is the difference between a
- HTML
- [What is the purpose of aria attributes?](#what-is-th
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// called in app root js file | |
// Classes and functions we need to build the store and initial state | |
import { createStore, applyMiddleware } from 'redux'; | |
import createSagaMiddleware from 'redux-saga'; | |
import InitialStateBuider from './initial-state-builder'; | |
// Sagas and Reducers | |
import rootSaga from '../modules/root-saga'; | |
import rootReducer from '../modules/root-reducer'; |