前端学习第一课——HTML



学习网络前端知识的第一课,使用了一些HTML常用标签,并简单应用了下CSS主题设置。来记录下自己的第一段html代码。


“1.html”中的代码:



    
        第一个html页面
        ...
        
        
    
        

一级标题:一起进步吧!

二级标题

三级标题...

六级标题,小到看不到。

这是一个段落。


强调文本
这是一条被删除的文本。 Bold text黑体文本
italic text美丽的意大利斜体
Emphasized text是不是和意大利体很像
小小小小
这是一段插入的文本
引用一句话?
这是图片加载失败时的替代文字

Email to US
常见问题
去底部,好像没有用。
  • “unorder list”无序列表
    1. "order list"有序列表中的第一条list item
    2. list item 2

姓名:

简介:

简历附件:



“1.css”中的代码:

a {
    text-decoration: none;
    color: red;
    background-color:yellow; 
}
#tit-one {
    border: 3px solid red;
}
body {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.outline {
    color: red;
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
}
.out.abc{
    background-color: yellow;
}

效果预览

效果图


一起进步吧!!