One thing that does the passing of an HTML / CSS template between several external developers is the proper structuring and indentation of the markup. Similarly, books are divided into volumes, chapters, paragraphs, sentences, words, spaces and periods. There is a hierarchical structure that simplifies reading HTML and CSS (and on the other, a coding method that makes things a complete mess)
Usually:
<body> <div id="first"> <p> Some text goes in here... <p> <ul> <li>A list item</li> <li>A list item</li> <li>A list item</li> <li> <ul> <li> <a href="#">A link</a> </li> </ul> </li> </ul> </div> </body>
Such a link to the structure can really shorten the time by making the scan code very simple for those who work on it, whether they wrote it or not.
source share