Source: How To Create Tabs
Engineering and technology
javascript – HTML / CSS autonumber headings? – Stack Overflow
This will make h2 get 1., 2., h3 gets 1.1, 2.1, 2.2 etc…
<style>
body{counter-reset: section}
h2{counter-reset: sub-section}
h3{counter-reset: composite}
h4{counter-reset: detail}
h2:before{
counter-increment: section;
content: counter(section) " ";
}
h3:before{
counter-increment: sub-section;
content: counter(section) "." counter(sub-section) " ";
}
h4:before{
counter-increment: composite;
content: counter(section) "." counter(sub-section) "." counter(composite) " ";
}
h5:before{
counter-increment: detail;
content: counter(section) "." counter(sub-section) "." counter(composite) "." counter(detail) " ";
}
</style>
Source: javascript – HTML / CSS autonumber headings? – Stack Overflow
Internet Hall of Fame – Wikipedia
Steve Crocker – Wikipedia
How To Create a Login Form
Source: How To Create a Login Form
GitHub – michar71/Open-DSO-150: An open source firmware for JYE Tech DSO-150 / DSO-138 Digital Storage Oscilloscope
A Cheap Oscilloscope Kit – DSO150 – Matt Norman Blog
Bass reflex speaker design – easy explanation – Audio Judgement
php – On login form chrome will save password but with no username – Stack Overflow
security – What is the best way to implement “remember me” for a website? – Stack Overflow
PHP: print_r – Manual
Source: PHP: print_r – Manual