Home > Article > Web Front-end > Han Shunping’s latest HTML basic video tutorial materials (source code, courseware) recommended
"Han Shunping's 2016 latest HTML basic video tutorial" is a video for beginners explaining the basic content of HTML. HTML (HyperText Mark-up Language) is the hypertext tag language. It is the most widely used language on the Internet and the main language that forms web documents. HTML text is descriptive text composed of HTML commands. HTML tags can describe text, graphics, animations, sounds, tables, links, etc.
Course playback address: http://www.php.cn/course/431.html
The teacher’s teaching style:
The teacher’s lectures are vivid, witty, witty, and touching. A vivid metaphor is like the finishing touch, opening the door to wisdom for students; a well-placed humor brings a knowing smile to students, like drinking a glass of mellow wine, giving people aftertaste and nostalgia; a philosopher's aphorisms, cultural references Proverbs are interspersed from time to time in the narration, giving people thinking and warning.
The more difficult part in this video is the image mapping tag map:
map tag for image mapping
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>map标签实现图片映射</title></head><body> <img src="fortoone.jpg" alt="4合1" usemap="fortoone"> <!-- 这里同时使用id和name指定相同的值,是因为不同的浏览器对其支持不同,为了兼容性设置两个属性 --> <map name="fortoone" id="fortoone"> <!-- coords属性指定形状,常用的有rect(矩形)、circle(圆形),herf表示点击之后转到的路径 a、矩形需要指定左上角和右下角坐标 b、圆形需要指定圆心和半径 c、多边形需要依次指定多个顶点的坐标 --> <area shape="rect" coords="0,0,248,248" href="atmsmoke.jpg"> <area shape="rect" coords="248,0,497,248" href="ddmsmoke.jpg"> <area shape="circle" coords="124,372,124" href="mfsnsmoke.jpg"> <area shape="circle" coords="372,372,124" href="rzsgsmoke.jpg"> </map></body></html>
Here we also recommend downloading source code resources: http://www.php. cn/xiazai/learn/2123
The resources share video courseware and source code
The above is the detailed content of Han Shunping’s latest HTML basic video tutorial materials (source code, courseware) recommended. For more information, please follow other related articles on the PHP Chinese website!