Macaw, is the New Web design tool for Developers & Programmers…. Macaw is a browser based code savvy design tool for responsive design, and produces both semantic HTML and CSS… Co-creators Tom Giannattasio and...
Category: HTML
Material UI – CSS Framework for Google’s Material Design

Material-UI is a CSS framework and a set of React components that implement Google’s Material Design specification. Material-UI is available as an npm package. Use browserify and reactify for dependency management and JSX transformation....
The span tag
<span> is the second-most commonly misunderstood tag in the HTML lexicon, after <div>. A useful way to think of <span> is this: it is an inline tag that is the liferaft of HTML, usedonly...
Should I Learn XHTML Or HTML5?
Deciding when and how to teach HTML5 is perhaps the most significant challenge facing web development in formal education. Whether you are learning in a classroom, online, or from books, determining which technology to...
HTML Forms: Hints and Tips
A well-designed form is a rarity, and a huge boost to any website. Most forms, online or off, are not well designed. Following a few simple rules will help both your client and their...
HTML Forms: Other input types
Less-commonly used input types include the following: value purpose hidden Contains a value, in the form <input type=”hidden” value=”x”>. Must be placed between opening and closing <form> tags. Used to pass a value to...
Adding and Inserting HTML Elements with JavaScript
It’s common to create HTML elements with JavaScript and add them to the page. The issue then becomes how to add elements whereyou want them. appendChild The simplest and most straightforward technique is to...
How to make Blurry Text with CSS
Its pretty easy to make some blurry text with CSS. We can do it by just making the text color transparent and adding some text shadow. Here’s the code for the same: Blurry Text with...