July 2017
Intermediate to advanced
300 pages
5h 43m
English
We've just reached the point where we can start templating our application. Using HTML and CSS, we will achieve the intended look and feel. Later, we will bind JavaScript modules to the acting elements.
We start by replacing the content of index.html with the following code:
./index.html
<!DOCTYPE html> <html> <head> <title>File Explorer</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="./assets/css/app.css" rel="stylesheet" type="text/css"> </head> <body class="l-app"> <header class="l-app__titlebar titlebar"> </header> <div class="l-app__main l-main"> <aside class="l-main__dir-list dir-list"> </aside> <main class="l-main__file-list file-list"> ...
Read now
Unlock full access