*  u_u_u   \/'''\. ./'''\. \    / ./'''\. \    /  '#_#'   |     | |     |  \  /  |     |  \  /  ^#.#^   |     | '\___/'   \/   '\___/'   \/ ^/\^/\^

[S]tyle [S]heet [M]arkup [L]anguage...   by novov (tm)

We all come up with awful ideas. SSML is one of mine. I thought the idea of HTML using CSS syntax would be an interesting, if impractical experiment. It turned out to be exactly that, for reasons that I hope are obvious.

/* A comment */

!DOCTYPE html {}
html {

	head {
	
		title {My Site}
		meta[name="description" content] {}
		
	}
	
	body {
	
		h1 {Hello, world!}
		
		a[href="http://en.wikipedia.org"] {A link here}
		
		p {This is a paragraph.}
		
		p.paragraph_class {This is a paragraph with a class}
		p#paragraph_id {This is a paragraph with an ID}
        
        ul {
        
        	li {This is an item in a non-enumerated list (bullet list)}
			li {This is another item}
			li {And this is the last item on the list}
            
		}
        
		p {This is a paragraph with i{italic} and b{bold} text.}
		
		img[src="http://example.com/abc.png"] {}
		
	}
    
}
		
<--- Return to experiments