首页 > 范文大全 > 简历模板 > it英文全程怎么写

it英文全程怎么写

时间:2018-03-01   来源:简历模板   点击:

【www.gbppp.com--简历模板】

it英文全程怎么写 第一篇_HTML标签对应英文全称及中文翻译

Html标签大全:

Html

Hypertext Markup Language

超文本标记语言

<a></a>超文本链接

<a href="URL"></a>创建超文本链接 ,其中的url为链接目标地址

href:

Hypertext Reference的缩写。意思是超文本引用

<a>

anchor 的缩写。anchor ['&aelig;ŋkə] 基本解释 n. 锚, 铁锚的。

URL

全球资源定位器(Uniform Resource Locator)

<h1align="center">this is a heading</h1>

HTML 标题(Heading)是通过<h1> - <h6>等标签进行定义的

W3C指出h1-h6标签可定义标题。h1定义最大的标题。h6定义最小的标题。h标签是成对出现的,以<h>开始,以</h>结束

align="center"中间对齐

align:排列、对齐、对准

<p>this is a Paragraph</P>

Paragraph----段落的意思

<imgsrc="w3school.jpg" width="104" height="142" />

img:image的缩写,图像,

src,source,资源

<br>标签是空标签(意味着它没有结束标签,因此这是错误的:<br></br>)。有换行的作用 Barter rabbet的缩写 barter:交易,rabbet 槽 break

<body bgcolor=”yellow”>

</body>

Bgcolor中的bg是background的缩写bgcolor意为:背景颜色

<table border="1">

</table>

table:表格,

border:['bɔ:də]边缘、边沿、边界表格边框的设置

从这里开始是按照字母排序开始的,可以对照文本

HTML属性(按字母排序).cn/tags/index.asp

<!- ->定义注释

<! DOCTYPE>定义文档类型的缩写文档类型doctype:document type

<abbr>定义缩写abbr : abbreviation,[ə,bri:vi'eiʃən]缩写,省略;

<acronym>定义只取首字母的缩写acronym:['ækrənim],首母缩略字

<address>定义文档作者或拥有者的联系信息address:地址

根据例题解释标签

<html>

<body>

<p>请点击图像上的星球,把它们放大。</p>

<img

src="/i/eg_planets.jpg"

border="0" usemap="#planetmap"

alt="Planets" />

<map name="planetmap" id="planetmap">

<area【it英文全程怎么写】

shape="circle"

coords="180,139,14"

href ="/example/html/venus.html"

target ="_blank"

alt="Venus" />

<area

shape="circle"

coords="129,161,10"

href ="/example/html/mercur.html"

target ="_blank"

alt="Mercury" />

<area shape="rect"

coords="0,0,110,260"

href ="/example/html/sun.html"

target ="_blank"

alt="Sun" />

</map>

<p><b>注释:</b>img元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根

据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>

</body>

</html>

Map地图、映射,此处为映射的意思。图像映射(image-map)指带有可点击区域的一幅图像 Area区域。area 元素永远嵌套在 map 元素内部。area 元素可定义图像映射中的区域

Usemap不做翻译,usemap属性与map 元素的 name 属性相关联,它建立了图像与映射之间的关

Altalternate text(替换文字;备用文本;替代文字),图片描述最好是用简短的语句,描述这张图片

的内容,如果是链接,则描述链接的作用,并带上关键词。

Coords坐标

Target目标。target这个属性指定所链接的页面在浏览器窗口中的打开方式 _bank

Shape形状。如:

Rec,rectangle ['rek,tæŋɡl]矩形

Circ,circle 圆形

Polypolygon ['pɔliɡən, -ɡɔn],多边形

实例:

<html>

<body>

<b>This text is bold</b>

<br />

<strong>This text is strong</strong>

<br />

<big>This text is big</big>

<br />

<em>This text is emphasized</em>

<br />

<i>This text is italic</i>

<br />

<small>This text is small</small>

<br />

This text contains

<sub>subscript</sub>

<br />

This text contains

<sup>superscript</sup>

</body>

</html>

显示效果为:

This text is bold<b> bold 黑体的

This text is strong<Strong>用于强调文本(粗体显示),比<em>标签更猛点

This text is big

This text is emphasized<em>emphasized的缩写,['emfəsaizid],强调、着重

This text is italic<i> italic的缩写i'tælik斜体字

This text is small<small>小字体文本

This text containssubscript<sub> subscript的缩写下标,脚注

This text containssuperscript<sup>superscript的缩写,上标

1)<font>定义HTML里,指定文本的字体、颜色及尺寸;看似功能很强大,但目前在HTML4及XHTML

中通常已经不被推荐。最好用CSS样式来定义更具体的内容。

2)<b>粗体显示文字;<big>用大字体显示文字;<small>用小字体显示文字;<sup>显示文字为上

标;<sub>显示文字为下标;——这是比较基础的HTML标签,所以在这里才一一列出,但在现阶段的web前端编码中,这些已经慢慢落后,被CSS取而代之!所以在实际运用的时候夜风并不推荐它们!

3)<em>与<i>都是用斜体来显示文字,就看个人使用习惯了,本人多用<em>.

4)<strong>用更明显的粗大字体来显示文字。这是在HTML文字定义标签里,能针对搜索引擎优化

的一个标签,个人非常推荐使用!

【it英文全程怎么写】

<base>标签为页面上的所有链接规定默认地址或默认目标 base:基础

Disabled禁止

Reset重置,清零

Submit提交

<caption>元素定义表格标题 caption n. 标题;字幕;说明

<center>对其所包括的文本进行水平居中

以下元素都是短语元素。虽然这些标签定义的文本大多会呈现出特殊的样式,但实际上,这些标签都拥有确切的语义。

我们并不反对使用它们,但是如果您只是为了达到某种视觉效果而使用这些标签的话,我们建议您使用样式表,那么做会达到更加丰富的效果。

it英文全程怎么写 第二篇_最全的单片机专业术语英文缩写全称

MCS-51指令

(1)数据传送类指令(7种助记符)

助记符 英文注释 功能

MOV Move 对内部数据寄存器RAM和特殊功能寄存器SFR的数据进行传送 MOVC Move Code 读取程序存储器数据表格的数据传送

MOVX Move External RAM 对外部RAM的数据传送

XCH Exchange 字节交换

XCHD Exchange low-order Digit 低半字节交换【it英文全程怎么写】

PUSH Push onto Stack) 入栈

POP Pop from Stack) 出栈

(2)算术运算类指令(8种助记符)

ADD Addition 加法

ADDC Add with Carry 带进位加法

SUBB Subtract with Borrow 带借位减法

DA Decimal Adjust 十进制调整

INC Increment 加1

DEC Decrement 减1

MUL Multiplication、Multiply 乘法

DIV Division、Divide 除法

(3)逻辑运算类指令(10种助记符)

ANL And Logic 逻辑与

ORL OR Logic 逻辑或

XRL Exclusive-OR Logic 逻辑异或

CLR Clear 清零

CPL Complement 取反

RL Rotate left 循环左移

RLC Rotate Left throught the Carry flag 带进位循环左移

RR Rotate Right 循环右移

RRC Rotate Right throught the Carry flag 带进位循环右移

SWAP Swap 低4位与高4位交换

(4)控制转移类指令(17种助记符)

ACALL Absolute subroutine Call 子程序绝对调用

LCALL Long subroutine Call 子程序长调用

RET Return from subroutine 子程序返回

RETI Return from Interruption 中断返回

JMP Jump Indirect

SJMP Short Jump 短转移

AJMP Absolute Jump 绝对转移

LJMP Long Jump 长转移

CJNE Compare and Jump if Not Equal 比较不相等则转移

DJNZ Decrement and Jump if Not Zero 减1后不为0则转移

JZ Jump if Zero 结果为0则转移

JNZ Jump if Not Zero 结果不为0则转移

JC Jump if the Carry flag is set 有进位则转移

JNC Jump if Not Carry 无进位则转移

JB Jump if the Bit is set) B位为1则转移

JNB Jump if the Bit is Not set B位为0则转移

JBC Jump if the Bit is set and Clear the bit 位为1则转移,并清除该位

NOP No Operation 空操作

(5)位操作指令(1种助记符)

SETB Set Bit 置位

伪指令

助记符 英文注释 功能

ORG Origin

DB Define Byte

DW Define Word

EQU Equal

DATA Data

XDATA External Data

BIT Bit

END End

51外部引脚

缩写 英文解释 中文解释

RST (9) Reset 复位信号引脚

RxD (10--P3.0) Receive Data 串口接收端

TxD (11--P3.1) Transmit Data 串口发送端

INT0(————) (12--P3.2)

Interrupt0 外部中断0信号输入引脚

INT1(————) (13--P3.3)

Interrupt1 外部中断1信号输入引脚

T0 (14--P3.4) Timer0 定时/计数器0输入信号引脚

T1 (15--P3.5) Timer1 定时/计数器1输入信号引脚

WR(———) (16--P3.6)

write

写信号引脚

RD(———) (17--P3.7)

read 读信号引脚

PSEN(—————) (29)

progammer saving enable 外部程序存储器读选通信号

ALE (30) Address Latch Enable 地址锁存允许信号

EA(———) (31)

enable 外部ROM选择信号

51内部寄存器

SFR special funtion register 特殊功能寄存器

ACC accumulate 累加器A

PSW progammer status word 程序状态字

CY (PSW.7) carry 进位标志位

AC (PSW.6) assistant carry 辅助进位标志位

OV (PSW.2) overflow 溢出标志位

PC progammer counter 程序计数器

DPTR data point register 数据指针寄存器

SP stack point 堆栈指针

TCON timer control 定时器控制寄存器

TF1 (TCON.7) Timer1 flag T1中断标志位

TR1 (TCON.6) Timer1 Run T1运行控制位

TF0 (TCON.5) Timer0 flag T0中断标志位

TR0 (TCON.4) Timer0 Run T0运行控制位

IE1 (TCON.3) Interrupt1 exterior 外部中断1中断标志位

IT1 (TCON.2) Interrupt1 touch 外部中断1 触发方式选择位

IE0 (TCON.1) Interrupt0 exterior 外部中断0中断标志位

IT0 (TCON.0) Interrupt0 touch 0-电平触发 1-下降沿触发

IE (A8H) interrupt enable 中断允许寄存器

EA (IE.7) enable all interrupt 中断总允许位

ES (IE.4) enable serial 串行口中断允许位

ET1 (IE.3) enable timer 1 T1中断允许位

EX1 (IE.2) enable exterior 1 外部中断1中断允许位

ET0 (IE.1) enable timer 0 T0中断允许位

EX0 (IE.0) enable exterior 0 外部中断0中断允许位

IP (B8H) interrupt priority 中断优先级寄存器

PS (IP.4) priority serial 串口优先级标志位

PT1 (IP.3) priority timer 1 定时器1优先级标志位

PX1 (IP.2) priority exterior 1 外部中断1优先级标志位

PT0 (IP.1) priority timer 0 定时器0优先级标志位

PX0 (IP.0) priority exterior 0 外部中断0优先级标志位

PCON (87H) power control 电源控制和波特率选择

TMOD (89H) timer mode 定时器方式控制寄存器

MSB = most significant bit//最高有效位

LSB = last significant bit//最低有效位

OE = output enable //输出使能

MCS-51指令

(1)数据传送类指令(7种助记符)

助记符 英文注释 功能

MOV Move 对内部数据寄存器RAM和特殊功能寄存器SFR的数据进行传送

MOVC Move Code 读取程序存储器数据表格的数据传送

MOVX Move External RAM 对外部RAM的数据传送

XCH Exchange 字节交换

XCHD Exchange low-order Digit 低半字节交换

PUSH Push onto Stack) 入栈

POP Pop from Stack) 出栈

(2)算术运算类指令(8种助记符)

ADD Addition 加法

ADDC Add with Carry 带进位加法

SUBB Subtract with Borrow 带借位减法

DA Decimal Adjust 十进制调整

INC Increment 加1

DEC Decrement 减1

MUL Multiplication、Multiply 乘法

DIV Division、Divide 除法

(3)逻辑运算类指令(10种助记符)

ANL And Logic 逻辑与

ORL OR Logic 逻辑或

XRL Exclusive-OR Logic 逻辑异或

CLR Clear 清零

CPL Complement 取反

RL Rotate left 循环左移

RLC Rotate Left throught the Carry flag 带进位循环左移

RR Rotate Right 循环右移

RRC Rotate Right throught the Carry flag 带进位循环右移

SWAP Swap 低4位与高4位交换

(4)控制转移类指令(17种助记符)

ACALL Absolute subroutine Call 子程序绝对调用

LCALL Long subroutine Call 子程序长调用

RET Return from subroutine 子程序返回

RETI Return from Interruption 中断返回

JMP Jump Indirect

SJMP Short Jump 短转移

AJMP Absolute Jump 绝对转移

LJMP Long Jump 长转移

CJNE Compare and Jump if Not Equal 比较不相等则转移

DJNZ Decrement and Jump if Not Zero 减1后不为0则转移

JZ Jump if Zero 结果为0则转移

JNZ Jump if Not Zero 结果不为0则转移

JC Jump if the Carry flag is set 有进位则转移

JNC Jump if Not Carry 无进位则转移

JB Jump if the Bit is set) B位为1则转移

JNB Jump if the Bit is Not set B位为0则转移

JBC Jump if the Bit is set and Clear the bit 位为1则转移,并清除该位

NOP No Operation 空操作

(5)位操作指令(1种助记符)

SETB Set Bit 置位

伪指令

助记符 英文注释 功能

ORG Origin

DB Define Byte

DW Define Word

EQU Equal

DATA Data

XDATA External Data

BIT Bit

END End

51外部引脚

缩写 英文解释 中文解释

RST (9) Reset 复位信号引脚

RxD (10--P3.0) Receive Data 串口接收端

TxD (11--P3.1) Transmit Data 串口发送端

INT0(————) (12--P3.2)Interrupt0 外部中断0信号输入引脚

INT1(————) (13--P3.3)Interrupt1 外部中断1信号输入引脚

T0 (14--P3.4) Timer0 定时/计数器0输入信号引脚

T1 (15--P3.5) Timer1 定时/计数器1输入信号引脚

WR(———) (16--P3.6) write 写信号引脚

RD(———) (17--P3.7) read 读信号引脚

PSEN(—————) (29)progammer saving enable 外部程序存储器读选通信号ALE (30) Address Latch Enable 地址锁存允许信号

EA(———) (31) enable 外部ROM选择信号

51内部寄存器

SFR special funtion register 特殊功能寄存器

ACC accumulate 累加器A

PSW progammer status word 程序状态字

CY (PSW.7) carry 进位标志位

AC (PSW.6) assistant carry 辅助进位标志位

OV (PSW.2) overflow 溢出标志位

PC progammer counter 程序计数器

DPTR data point register 数据指针寄存器

SP stack point 堆栈指针

TCON timer control 定时器控制寄存器

TF1 (TCON.7) Timer1 flag T1中断标志位

TR1 (TCON.6) Timer1 Run T1运行控制位

it英文全程怎么写 第三篇_HTML标签英文全称

<bdo> bidirectional override 定义文字的显示方向 <big> 定义大号字

<blockquote> 定义长的引用 <body> 定义body元素 <br> break 插入一个回车 <button> 定义按钮 <caption> 定义表格标题 <cite> citation 定义引用

<code> computer code 定义计算机代码文本 <col> column 定义用于表格列的属性 <colgroup> column group 定义表格的列祖 <dd> definition description 定义定义的描述 <del> delete 定义被删除的文本 <div> division 定义文档中的节

<dfn> defining instance 定义定义的项目。 <dl> definition list 定义定义列表 <dt> definition term 定义定义的项目 <em> emphasized 定义强调文本 <fieldset> 定义域结构 <form> 定义表单

<frame> 定义框架的子窗口 <frameset> 定义框架集 <h1>to<h6> 定义标题1到标题6 <head> 定义关于文档的信息 <hr> horizontal 定义水平线

<html> hypertext markup language 定义html文档 <i> italic 定义斜体字

<iframe> inline frame 定义内联框架 <img> image 定义图像 <input> 定义输入域

<ins> inserted 定义被插入的文本 <kbd> keyboard 定义键盘文本 <label> 定义针对表单控件的标签 <legend> 定义框架集的标题 <li> list item 定义列表的项目

<link> 定义资源引用 <map> 定义图像映射 <meta> 定义元信息 <noframe> 定义无框架的节 <noscript> 定义无脚本的节 <object> 定义内嵌对象 <ol> ordered list 定义有序列表 <optgroup> option group 定义选项组 <option> 定义下拉列表的选项 <p> paragraph 定义段落 <param> 定义对象的参数

<pre> preformatted 定义预格式文本 <q> quotation 定义短的引用 <samp> sample 定义计算机代码样本 <script> 定义脚本 <select> 定义选择列表 <small> 定义小字体文本 <span> 定义文档中的节

<strong> stronger empasis定义强调文本 <style> 定义样式的定义 <sub> subscript 定义下标文本 <sup> superscript 定义上标文本 <table> 定义表格

<tbody> table body 定义表格的主体部分 <td> table data cell定义表格单元 <textarea> 定义文本区域 <tfoot> table foot定义表也的脚注

<th> table header cell定义表格的表头单元格 <thead> table head定义表格的标题 <title> 定义文档的标题 <tr> table row定义表格的行 <tt> teletype 定义打字机文本 <ul> unordered list 定义无序列表 <var> variable 定义变量

it英文全程怎么写 第四篇_新职业英语 IT英语 Unit1翻译

Unit1

联想—新世界,新思维

1984年,由于预见到计算机必将改变人们的工作和生活方式,联想的创始人柳传志和十个志同道合的同事创建了新技术开发公司,该公司就是后来举世闻名的联想集团。

随后的几年里, 本着公司的核心价值观——创新,联想实现了很多重要的技术突破:例如发明了能将操作系统由英文翻译成中文的联想汉卡,创造了轻敲一个按键就能上网的“一键式上网”以及发展了联合应用技术。所有这些创新奠定了联想十多年来在中国电脑市场上的领先地位。

2003年,联想更名为Lenovo,准备进军海外市场。两年后,联想收购了IBM 个人电脑部。如今,联想全球雇员超过2.5万人,总部位于北卡罗莱纳州的罗利,研发中心设在中国、日本和美国。除了中国的电脑生产和装配厂外,联想在美国、墨西哥、巴西和其他国家也建有生产和分销中心。

现在,联想的主要业务涉及开发、制造和销售高质量个人电脑产品及增值服务。其在全世界生产销售的产品包括著名的ThinkPad笔记本电脑和ThinkCentre台式机。在中国,联想占有约三分之一的个人电脑市场。产品除天骄、锋行家用台式机以及扬天、开天商用台式机外,联想还有一条包括服务器、外设和数码娱乐产品在内的生产线,这条生产线产品丰富,日益扩大。

联想总是将其公司价值观牢记在心:服务客户、创业创新、精准求实和诚信共享。联想致力于成为一家世界性的公司,设计并提供新颖动人的产品和服务来满足全球顾客的需求。

it英文全程怎么写 第五篇_英文范文 IT行业求职信

求职信

尊敬的人力资源部经理

您好!

很荣幸您能在百忙之中翻阅我的求职信,谢谢

我叫曹飞,是一名南京邮电大学即将毕业的计算机科学与技术专业的本科生,届时将获得计算机学士学位。大学四年,奠定了扎实的专业理论基础,良好的组织能力,团队协作精神,务实的工作作风。

作为一名大学生,我很清楚地认识当代人才的竞争是何等激烈,一个有竞争力的人才不仅需要扎实丰富的专业知识,让自己所学的知识和综合素质得到巩固和加强。经常参加各种文体活动,社会实践活动,实践经验突出,具有良好的团队协作精神和人际沟通协调能力。利用节假日和寒暑假做一些促销和市场调查;以此来不断完善自己,成为一名新世纪的复合型人才,迎接社会的挑战。

精通C、C++、JAVA。熟练使用Linux、Windows等操作系统。熟练使用Office、WPS办公自动化软件。自学HTML 、Frontpage 、Dreamweaver 、Fireworks 、Flash等网页制作相关软件。对于常用软件都能熟练使用。并获得全国计算机二级,CET6等国家级证书。

收笔之际,郑重地提一个小小的要求: 无论您是否选择我,尊敬的领导,希望您能够接受我诚恳的谢意!

祝愿贵单位事业蒸蒸日上!

Cover letter

Dear Human Resources Manager

Hello!

I am honored to be your busy schedule to read my cover letter, thank you

My name is Cao Fei, a Nanjing University of Posts and Telecommunications, Computer Science graduating undergraduates and technical expertise, will get a BS in Computer Science. Four years of college, laid a solid theoretical basis, good organizational skills, teamwork spirit, pragmatic style of work.

As a college student, I am very well aware how fierce competition of contemporary talent, a competitive talent requires not only a solid and a wealth of expertise, the knowledge and the overall quality to be consolidated and strengthened. Often participate in various sports activities, social practice, practical experience is outstanding, with good team spirit and human interpersonal communication and coordination skills. Holidays and summer vacation to do some promotion and market research; in order to constantly improve themselves, to a complex talent of a new century, to meet the challenges of society.

Proficient in C and C + +, JAVA. Familiar with Linux, Windows and other operating systems. Familiar with the Office, WPS Office automation software. Self-an HTML, Frontpage, Dreamweaver, Fireworks, Flash, etc. web production software. Proficiency in commonly used software can use. Computer II, CET 6 national certificate.

Received on the occasion of the pen, solemnly raised a small request: Whether or not you choose me, Dear leaders, we hope you will accept my sincere thanks!

Wish your organization business was flourishing!

Cover letter

Dear Human Resources Manager

Hello!

Are honored in his busy schedule to read my cover letter, thank you

My name is Cao Fei, a Nanjing University of Posts and Telecommunications, graduating in computer science and technology professional undergraduate, graduate with BS in Computer Science. Four years of college, laid a solid theoretical basis, good organizational skills, teamwork spirit, pragmatic style of work.【it英文全程怎么写】

As a college student, I am very well aware how fierce competition of contemporary talent, a competitive talent requires not only a solid and a wealth of expertise, the knowledge and the overall quality to be consolidated and strengthened. Often participate in various sports activities, social practice, practical experience is outstanding, with good team spirit and human interpersonal communication and coordination skills. Holidays and summer vacation to do some promotion and market research; in order to constantly improve themselves, to a complex talent of a new century, to meet the challenges of society.

Proficient in C and C + +, JAVA. Familiar with Linux, Windows and other operating systems. Familiar with the Office, WPS Office automation software. Taught himself HTML, Frontpage, Dreamweaver, Fireworks, Flash, etc. Web production software. Proficiency in commonly used software can use. Computer II, CET 6 national certificate.

Finally, I solemnly to mention one small request: Whether or not you choose me, respected leader, I hope you will accept my sincere thanks!

Wish your organization business was flourishing!

it英文全程怎么写 第六篇_IT相关职位名称英文翻译

IT相关职位名称英文翻译

计算机/互联网/通讯 Technology/Internet

首席技术执行官 CTO/VP Engineering

技术总监/经理 Technical Director/Manager

信息技术经理 IT Manager

信息技术主管 IT Supervisor

信息技术专员 IT Specialist

项目经理/主管 Project Manager/Supervisor

项目执行/协调人员 Project Specialist / Coordinator 系统分析员 System Analyst

高级软件工程师 Senior Software Engineer

软件工程师 Software Engineer

系统工程师 System Engineer

高级硬件工程师 Senior Hardware Engineer

硬件工程师 Hardware Engineer

通信技术工程师 Communications Engineer

ERP技术/应用顾问 ERP Technical/Application Consultant 数据库工程师 Database Engineer

技术支持经理 Technical Support Manager

技术支持工程师 Techni

本文来源:http://www.gbppp.com/fw/423501/

推荐访问:陆慷全程英文 it英文简历

热门文章