HTML的简单应用 标记信件

前言:

  暑假开始了,我也要正式开始学习web的相关知识了,先从三大件的html开始吧,目前只简单了解了html相关知识的基础,能写一些包含一些文字和图片的简单网页,其实会的东西还是不多,这边看书时发现书上有这样一个练习,就自己做了一下,也发现了自己这段时间学习的不足,只学不去用的话自己其实很难掌握这些知识,后面的学习我可能会看一些网课,做一点小项目来接着巩固自己的所学。

正文:

要求:

想自己尝试的可以访问这个网站:标记信件 - 学习 Web 开发 | MDN (mozilla.org)

代码:

<!doctype html>
<html lange="en-US">
    <head>
        <meta charset="utf-8" />
        <meta name="author" coontent="Dr.Eleanor Gaye"/>
        <link rel="stylesheet" href="text1css.css">
    </head>

    <body>
        <address class="sender-column">
        <strong>Dr. Eleanor Gaye</strong><br>
        Awesome Science faculty<br>
        University of Awesome<br>
        Bobtown, CA 99999,<br>
        USA<br>
        <strong>Tel:</strong> 123-456-7890<br>
        <strong>Email:</strong> no_reply@example.com<br>
        </address>

        <p class="sender-column">
        <time datatime="2016-01-20">20 January 2016</time>
        </p>

        <address>
            <strong>Miss Eileen Dover</strong><br>
            4321 Cliff Top Edge<br>
            Dover, CT9 XXX<br>
            UK
          </address>

        <h1>Re: Eileen Dover university application</h1>
        <p>Dear Eileen,</p>
        <p>Thank you for your recent application to join us at the University of Awesome's science faculty to study as part of your <abbr title="Philosophy Doctor">PhD</abbr> next year. I will answer your questions one by one, in the following sections.</p>
        
        <h2>Starting dates</h2>

        <p>We are happy to accommodate you starting your study with us at any time, however it would suit us better if you could start at the beginning of a semester; the start dates for each one are as follows:</p>
        <ul>
        <li>First semester: 9 September 2016</li>
        <li>Second semester: 15 January 2017</li>
        <li>Third semester: 2 May 2017</li>
        </ul>
        <p>Please let me know if this is ok, and if so which start date you would prefer.</p>

        <p>You can find more information about <a href="https://www.csdn.net/">important university dates</a> on our website.</p>


        <h2>Subjects of study</h2>

        <p>At the Awesome Science Faculty, we have a pretty open-minded research facility — as long as the subjects fall somewhere in the realm of science and technology. You seem like an intelligent, dedicated researcher, and just the kind of person we'd like to have on our team. Saying that, of the ideas you submitted we were most intrigued by are as follows, in order of priority:</p>
        <ol>
        <li>Turning H<sub>2</sub>O into wine, and the health benefits of Resveratrol (C<sub>14</sub>H<sub>12</sub>O<sub>3</sub>.)</li>
        <li>Measuring the effect on performance of funk bassplayers at temperatures exceeding 30°C (86°F), when the audience size exponentially increases (effect of 3 × 10<sup>3</sup> increasing to 3 × 10<sup>4</sup>.)</li>
        <li><abbr title="Hyper Text Markup Language">HTML</abbr> and <abbr title="Cascading Style Sheets">CSS</abbr> constructs for representing musical scores.</li>
        </ol>
        <p>So please can you provide more information on each of these subjects, including how long you'd expect the research to take, required staff and other resources, and anything else you think we'd need to know? Thanks.</p>

        <h2>Exotic dance moves</h2>

        <p>Yes, you are right! As part of my post-doctorate work, I did study exotic tribal dances. To answer your question, my favourite dances are as follows, with definitions:</p>

        <p>Polynesian chicken dance</p>
        <blockquote>
            <p>A little known but very influential dance dating back as far as 300<abbr title="Before Christ">BC</abbr>, a whole village would dance around in a circle like chickens, to encourage their livestock to be "fruitful".</p>
        </blockquote>

        <p>Icelandic brownian shuffle</p>
        <blockquote>
            <p>Before the Icelanders developed fire as a means of getting warm, they used to practice this dance, which involved huddling close together in a circle on the floor, and shuffling their bodies around in imperceptibly tiny, very rapid movements. One of my fellow students used to say that he thought this dance inspired modern styles such as Twerking.</p>
        </blockquote>

        <p>Arctic robot dance</p>
        <blockquote>
            <p>An interesting example of historic misinformation, English explorers in the 1960s believed to have discovered a new dance style characterized by "robotic", stilted movements, being practiced by inhabitants of Northern Alaska and Canada. Later on however it was discovered that they were just moving like this because they were really cold.</p>
        </blockquote>

        <p>For more of my research, see <a href="https://www.csdn.net/">my exotic dance research page</a>.</p>

        <p>Yours sincerely,</p>
        <p>Dr Eleanor Gaye<p>

        <p>University of Awesome motto: "Be awesome to each other." -- The memoirs of Bill S Preston, Esq</p>
</html>

其中<address class="sender-column">到</address>这一段是为了将内容放置在网页左上角,算是一个我的未知知识吧。

实现效果:

后记:

  目前设计个简单的静态网页没啥问题,但要写一个博客网站还是任重而道远啊。

相关推荐

  1. 超文本标记语言(HTML简介

    2024-07-17 22:22:03       30 阅读
  2. 简单HTML

    2024-07-17 22:22:03       29 阅读
  3. html简单使用

    2024-07-17 22:22:03       37 阅读
  4. HTML label 标签作用和应用场景

    2024-07-17 22:22:03       23 阅读
  5. HTML6种空格标记

    2024-07-17 22:22:03       63 阅读
  6. HTML5 常见语义标记(布局)

    2024-07-17 22:22:03       25 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-17 22:22:03       70 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-17 22:22:03       74 阅读
  3. 在Django里面运行非项目文件

    2024-07-17 22:22:03       62 阅读
  4. Python语言-面向对象

    2024-07-17 22:22:03       72 阅读

热门阅读

  1. 2024华为云数据库斯享会,扎根技术,向深向实

    2024-07-17 22:22:03       22 阅读
  2. ios CCSqlite3.m

    2024-07-17 22:22:03       23 阅读
  3. OpenLayers学习笔记-点位聚合

    2024-07-17 22:22:03       23 阅读
  4. c++邻接矩阵

    2024-07-17 22:22:03       23 阅读
  5. Mojo 编程语言简介

    2024-07-17 22:22:03       24 阅读
  6. 量化交易策略的优化与回测

    2024-07-17 22:22:03       24 阅读
  7. 测试面试题(八)

    2024-07-17 22:22:03       22 阅读
  8. IDEA常用配置

    2024-07-17 22:22:03       22 阅读
  9. 分类题解清单

    2024-07-17 22:22:03       27 阅读
  10. sourcetree 下载地址

    2024-07-17 22:22:03       23 阅读
  11. DATE_SUB 的用法

    2024-07-17 22:22:03       22 阅读