进程
开始在freeCodeCamp上学习基础 HTML&CSS 知识。
学习了github 中如何建立repository,branch,如何使用 pull request 来 merge 代码。
在慕课上也注册了帐号,但是感觉课程节奏较慢,所以转用freeCodeCamp。
今日重点
<title>xxx</title>标签中content会显示在浏览器标签栏中
链接中有target=”_blank” 点击后打开新浏览页
链接邮件地址
<a href="mailto:yy@imooc.com?subject=观了不起的盖茨比有感&body=你好,对此评论有些想法。">对此影评有何感想,发送邮件给我</a>
其中,sbuject为将要发送的邮件主题, body为内容。第一个参数使用 ? 添加, 其他参数用&分隔
HTML直接向服务器提交数据,可以实现text field, button, radio button, check box等元素
<form action="">
<!--text field-->
<input type="text" placeholder="xxx" required>
<!--button-->
<button type="submit">Submit</button>
<!-- two radio buttons-->
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
</form>
需要与服务器数据交互的元素放在form中。
input类型有多种type元素,包括text, radio, checkbox,submit, reset等。
name表示在逻辑上同一组的元素。
某些元素要显示字符需要添加label。
*action 属性需要进一步理解