HTML Notes
Label tag and input in form
<form action="">
<label for="male">Male</label> //for and id should be same
<input type="radio" name="sex" id="male" value="male"><br>
<label for="female">Female</label>
<input type="radio" name="sex" id="female" value="female"><br><br>
<input type="submit" value="Submit">
</form>
HTML Notes的更多相关文章
- ASP.NET Core 1.1.0 Release Notes
		ASP.NET Core 1.1.0 Release Notes We are pleased to announce the release of ASP.NET Core 1.1.0! Antif ... 
- Android Weekly Notes Issue #237
		Android Weekly Issue #237 December 25th, 2016 Android Weekly Issue #237 这是本年的最后一篇issue, 感谢大家. 本期内容包括 ... 
- Android Weekly Notes Issue #230
		Android Weekly Notes Issue #230 November 6th, 2016 Android Weekly Issue #230. Android Weekly笔记, 本期内容 ... 
- Android Weekly Notes Issue #229
		Android Weekly Issue #229 October 30th, 2016 Android Weekly Issue #229 Android Weekly笔记, 本期内容包括: 性能库 ... 
- Android Weekly Notes Issue #227
		Android Weekly Issue #227 October 16th, 2016 Android Weekly Issue #227. 本期内容包括: Google的Mobile Vision ... 
- Android Weekly Notes Issue #221
		Android Weekly Issue #221 September 4th, 2016 Android Weekly Issue #221 ARTICLES & TUTORIALS And ... 
- Android Weekly Notes Issue #219
		Android Weekly Issue #219 August 21st, 2016 Android Weekly Issue #219 ARTICLES & TUTORIALS Andro ... 
- MAGIC XPA最新版本Magic xpa 2.4c Release Notes
		New Features, Feature Enhancements and Behavior ChangesSubforms – Behavior Change for Unsupported Ta ... 
- Magic xpa 2.5发布 Magic xpa 2.5 Release Notes
		Magic xpa 2.5發佈 Magic xpa 2.5 Release Notes Magic xpa 2.5 Release NotesNew Features, Feature Enhance ... 
- Git for Windows v2.11.0 Release Notes
		homepage faq contribute bugs questions Git for Windows v2.11.0 Release Notes Latest update: December ... 
随机推荐
- 怎么在eclipse中安装svn插件
			Subclipse Subclipse is an Eclipse Team Provider plug-in providing support for Subversion within th ... 
- css遮罩层
			父元素:position:fixed; 让子元素居中对齐:position:absolute;top:0;bottom:0;left:0;right:0;margin:auto; <style& ... 
- javaweb下载文件
			//读取文件->写出文件 public static void main(String[] args) { InputStream in =null; OutputStream out = nu ... 
- Oozie-自定义实现WorkFlow中shell action
			拷贝默认的shell目录来进行修改 $ cp -r ./examples/apps/shell/ my-apps/ 定义job.properties nameNode=hdfs://bigdata-0 ... 
- Android Studio 1.1.0 向导页(首页) 解析,以及版本控制 (SVN 和 GIT 的检出)
			使用Android Studio首先要理清楚, Android Studio 的 project 相当于Eclipse的 Workspace Android Studio 的 module 相当于E ... 
- SQL存储过程教程
			一直以来,对SQL SERVER的存储过程和触发器都基本没有用到,只是偶尔从网上找几个简单的函数PASTE到我的SQL中用.自己写总是感觉缺点什么,前几天单位的培训讲了一天的SQL SERVER, ... 
- C++编程学习50个经典网站 强力推荐(转载)
			转自:http://blog.csdn.net/microzone/article/details/6684436 C/C++是最主要的编程语言.这里列出了50名优秀网站和网页清单,这些网站提供c/c ... 
- 常用查找算法(Java)
			常用查找算法(Java) 2018-01-22 1 顺序查找 就是一个一个依次查找 2 二分查找 二分查找(Binary Search)也叫作折半查找. 二分查找有两个要求, 一个是数列有序, 另一个 ... 
- Android NDK之一:什么是NDK?
			转:http://blog.csdn.net/xiruanliuwei/article/details/7560798 What is the NDK? The Android NDK is a to ... 
- flash object实现视频播放效果
			html: <!--视频缩略图开始--> <div class="fresh-media fresh-type-video"> ... 
