[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

What is your guys favorite book for learning html5?

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 6
Thread images: 1

What is your guys favorite book for learning html5?
>>
don't use a book

htmldog.com
>>
>>59360386
I didn't know everyone on 4chan is the most popular student in class and gets the best grades.
>>
lol, a book to learn HTML
I'm borderline retarded and I learned pretty much all there is to learn about it in two hours from w3schools
>>
Books are for concepts, not documentation. There are practically no concepts in HTML that can't be learned in 10 minutes. It's basically XML with some strictness cut out.
>>
>>59360386

>>59360397
>>59362261
These. Here, I'll even give you an example:
https://jsfiddle.net/6bo590b6/
<html>
<head>
<title>Title for Page</title>
<!--CSS/Metatags/Favicon go here-->
<link rel="stylesheet" href="somefolder/some.css">
<style type="text/css">
.bodytext{
text-align:center;
font-size:3rem;
}
.fontclass{
font-family: "Futura";
}
</style>
<link rel="icon" type="image/png" href="some/favicon.png" />
<meta name="description" content="Description here.">
</head>
<!--Main content/scripts here!-->
<body>
<h1>I'm a header!</h1>
<h2 id="sechead">I'm a smaller h with the id #sechead!</h2>
<p id="firstp" class="bodytext">I'm some text that has the class "bodytext"</p>
<p class="bodytext fontclass">Classes can be reused for multiple elements.</p>
<p id="sechead">Id's cannot! Now I have the id of #sechead, not the h2 element. ;_;</p>
<a href="/someinternallink.html">I am a link!</a>
<a href="#firstp">I link back to the first p tag!</a>
<a href="https://danbooru.donmai.us/posts/2653043">I link to an external site.</a>
<img src="https://danbooru.donmai.us/posts/2653043" alt="I am an image, you shouldn't hotlink though! It's bad!">
<button id="addbutton">CLICK ME!</button>
<form action="/somepage.html" method="GET">
<label for="itext">I am a label!</label>
<input type="text" name="itext" placeholder="I accept text values." value="I am the default!">
<label for="coolselect">I'm for the select.</label>
<select id="coolselect" name="coolselect">
<option value="0">Selecting is lame.</option>
<option value="1">Selecting is cool!</option>
</select>
<input type="submit" value="I submit the form to be processed">
</form>
<!--This is JavaScript!-->
<script type="text/javascript">
//I am a variable. I store values.
var x = 2;
//I am also a variable. I store #subbutt!
var elem = document.getElementById("addbutton");
elem.addEventListener('onclick',function(){
alert(++x)
});
</script>
</body>
</html>
Thread posts: 6
Thread images: 1


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.