Text w/HTML markup & Plain Text

by mspears

HTML

<h3>Week #1</h3>
<div id="helloworld"></div>


<ul>
  <li>
    JavaScript from Beginner to Professional: Learn JavaScript quickly by building fun, interactive, and dynamic web apps, games, and pages
    <span>
    by Laurence Lars Svekis , Maaike van Putten
    </span>
  </li>

  <li>
    Node.js Design Patterns: Design and implement production-grade Node.js applications using proven patterns and techniques, 3rd Edition
    <span>
    by Mario Casciaro and Luciano Mammino
    </span>
  </li>


  <li>    
    Head First JavaScript Programming: A Brain-Friendly Guide
    <span>
    by Head First Series 
    </span>
  </li>


  <li>  
    Modern JavaScript for the Impatient
    <span>
    by Cay S. Horstmann
    </span>
  </li>
  
  
  <li>
    Eloquent JavaScript, 3rd Edition: A Modern Introduction to Programming
    <span>
    by Marijn Haverbeke
    </span>
  </li>


  <li>
    JavaScript from Beginner to Professional: Learn JavaScript quickly by building fun, interactive, and dynamic web apps, games, and pages
    <span>
    by Laurence Lars Svekis , Maaike van Putten
    </span>
  </li>
  
</ul>



<!-- Plain text without HTML markup -->
Web Design with HTML, CSS, JavaScript and jQuery Set
by Jon Duckett

JavaScript: The Comprehensive Guide to Learning Professional JavaScript Programming
by Philip Ackermann

Node.js: The Comprehensive Guide to Server-Side JavaScript Programming
by Sebastian Springer

Coding with JavaScript For Dummies
by Chris Minnick and Eva Holland

CSS

#helloworld {
    color: red;
}

ul {
  list-style-type: none;
}

ul li {
  margin-bottom: 1rem;
}

ul span {
  display: block;
  margin-bottom: 1rem;
  margin-top: 0.2rem;
  
  text-transform: uppercase;
  font-family: "helvetica neue", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.01rem;
  
}

JavaScript

document.getElementById("helloworld").innerHTML="Welcome to CSCI E-3!";