上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 代码如下: <html> <head> <title>A标签的使用</title> </head> <body> <!--href表示要的路径 name表示A标签的一个标示 target标示打开新页面方式--> <a href="http://www.baidu.com" target="_blan 阅读全文
posted @ 2020-06-09 18:13 进一步海阔天空 阅读(175) 评论(0) 推荐(0)
摘要: 常用的标签代码: <html> <head> <title>exercese1</title> </head> <body> <h1>促销信息</h1> <img src="C:\Users\SpringRain\Desktop\1.jpg" title="好看的桌面" /> 人生自古谁无死,留取丹 阅读全文
posted @ 2020-06-09 17:53 进一步海阔天空 阅读(102) 评论(0) 推荐(0)
摘要: 网页中常见的标签代码: <html> <head> <title>网页中常用的标签</title> </head> <body> <p>床前明月光,疑是地上霜。</p> <p>举头望明月,我叫郭德纲。</p> 床前明月光,疑是地上霜。<br/> 举头望明&nbsp;&nbsp;&nbsp;&nbsp 阅读全文
posted @ 2020-06-09 17:50 进一步海阔天空 阅读(272) 评论(0) 推荐(0)
摘要: html的标签大概如下: <!--> <!DOCTYPE> <a> <abbr> <acronym> <address> <applet> <area> <b> <base> <basefont> <bdo> <big> <blockquote> <body> <br> <button> <capt 阅读全文
posted @ 2020-06-09 17:42 进一步海阔天空 阅读(105) 评论(0) 推荐(0)
摘要: 什么是 HTML? HTML 是用来描述网页的一种语言。 HTML 指的是超文本标记语言 (Hyper Text Markup Language) HTML 不是一种编程语言,而是一种标记语言 (markup language) 标记语言是一套标记标签 (markup tag) HTML 使用标记标 阅读全文
posted @ 2020-06-09 17:35 进一步海阔天空 阅读(144) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 字段与属性 { class Program { 阅读全文
posted @ 2020-06-07 22:17 进一步海阔天空 阅读(135) 评论(0) 推荐(0)
摘要: 代码 : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 封装 { class Program 阅读全文
posted @ 2020-06-07 22:14 进一步海阔天空 阅读(97) 评论(0) 推荐(0)
摘要: 泛型的模板: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 泛型List { /// <sum 阅读全文
posted @ 2020-06-07 22:12 进一步海阔天空 阅读(204) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 对象初始化器 { /// <summary> / 阅读全文
posted @ 2020-06-07 19:14 进一步海阔天空 阅读(113) 评论(0) 推荐(0)
摘要: 构造方法:1,用于初始化,一个类中最少有一个2,用new关键字调用3,不能有返回值4,方法名和类名一样 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System 阅读全文
posted @ 2020-06-07 18:49 进一步海阔天空 阅读(158) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 下一页