Here you can watch a serie of
16 video Tutorials from Youtube with node.js and Express module, useful for beginner.
Click on the link to display the video.
Node.js with express - Step by Step Video Tutorials
- Expressjs introduction
- Expressjs environment setup
- Basic program
- Express js routing
- URL binding
- Middleware
- Templating
- Static files
- Post data
- Express database
- Cookies
- Sessions
- Express scaffolding
- Error handling
- Restful api
- Expressjs debugging
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which tag is used to include external CSS file in web page?
<body> <script> <link><link href="/templ/style.css" rel="stylesheet" type="text/css" />
Which CSS property sets the text size?
font-weight text-decoration font-sizeh2 {
font-size: 1em;
}
Indicate the JavaScript property that can add HTML code into an element.
text value innerHTMLdocument.getElementById("someID").innerHTML = "HTML content";
Click on the function that returns the number of characters of a string in PHP.
count() strlen() stristr()$str = "http://CoursesWeb.net/";
$nr_chr = strlen($str);
echo $nr_chr; // 22