At this moment I want to sing a poem

foreword

The author is a college student in a university in the Central Plains. He usually posts articles in his spare time. You are welcome to ask questions in a timely manner and ensure the first reply. If you are interested, give the blogger a free like!

Recently, a small friend has published a front-end tutorial, but I have no ability to learn, so I simply wrote a page to express my sentiments.

write poetry

Sheng Chazi·Yuanxi
Ouyang Xiu
Last year on the night of Yuan Dynasty①, the flower market lights were like day ②.
The moon reaches the head of the willow, and the people are about after dusk.
On the night of the new year this year, the moon and the lights are still the same.
I haven't seen the people of last year, and my tears are full of spring shirt sleeves.
Notes
① Lantern Festival: The fifteenth day of the first lunar month is the Lantern Festival. This night is called Yuan Ye, Yuan Xi.
②Flower Market: A bustling street market.

Appreciation

This is the Prime Minister's thoughts on the sweetness of meeting his lover last year and the pain of not seeing his lover today. It is clear and full of charm. The upper part of the word is written about "Last year's Yuan night". The lights of the flower market are as bright as day. It is not only a good time to watch the lights and admire the moon, but also give young men and women in love a good opportunity to meet secretly in dim lights. "The moon arrives at the head of the willow, and the person is about after dusk." The two sentences are exhaustive and meaningful. The tenderness is beyond words. Next, write the scene of "This year's Yuan's Eve". "The moon and the lamp remain the same", although only the moon and the lamp are mentioned, it should actually include two or three sentences of flowers and willows. The next sentence "I didn't see last year's people" and "tears filled the sleeves of spring shirts", with a very obvious expression, a word "full", which vividly expressed the sentimentality of things that are right and wrong, and that the old relationship can't be continued.

Above

insert image description here

code


<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>poem</title>
	<!-- <link rel="stylesheet" href="../css/css.css"> -->
	<style>
	*{
      
      
		margin: 0;
		padding: 0;
	}
		body{
      
      
			background: url("images/w3b.png") repeat-y,url("images/w3b.png") right repeat-y;
			
		}
		.poem{
      
      
			width: 540px;
			height: 463px;
			background: url("images/black.jpg") no-repeat;
			color: #ffffff;
			margin: 150px auto 0;
			padding: 10px 30px;
	
		}
		.poem h1{
      
      
			font-size: 20px;
			line-height: 40px;
		}
		.poem h2{
      
      
			font-size: 18px;
			line-height: 40px;
			letter-spacing: 8px;
		}
		.poem h3{
      
      
			font-size: 16px;
			line-height: 40px;
		}
		.poem p{
      
      
			font-size: 14px;
			line-height: 20px;
		}
		.poem ul{
      
      
			list-style-type: none;
			font-size: 14px;
			line-height: 20px;
		}
		.poem sup{
      
      
			color: #ff0000;
		}
		.poem span{
      
      
			color: #ff0000;
		}
	</style>
</head>
<body>
	<div class="poem">
		<h1>生查子·元夕</h1>
		<h2>欧阳修</h2>
		<p>
			去年元夜时<sup></sup>,花市灯如昼<sup></sup><br>
			月到柳梢头,人约黄昏后。<br>
			今年元夜时,月与灯依旧。<br>
			不见去年人,泪满春衫袖。
		</p>
		<h3>注释</h3>
		<ul>
			<li><span></span>元夜:正月十五为元宵节。这夜称为元夜、元夕。</li>
			<li><span></span>花市:繁华的街市。</li>
		</ul>
		<h3>赏析</h3>
		<p>
			这是首相思词,写去年与情人相会的甜蜜与今日不见情人的痛苦,明白如话,饶有韵味。词的上阕写“去年元夜”的事情,花市的灯像白天一样亮,不但是观灯赏月的好时节,也给恋爱的青年男女以良好的时机,在灯火阑珊处秘密相会。“月到柳梢头,人约黄昏后”二句言有尽而意无穷。柔情密意溢于言表。下阕写“今年元夜”的情景。“月与灯依旧”,虽然只举月与灯,实际应包括二三句的花和柳,是说闹市佳节良宵与去年一样,景物依旧。下一句“不见去年人”“泪满春衫袖”,表情极明显,一个“满”字,将物是人非,旧情难续的感伤表现得淋漓尽致。
		</p>
	</div>
</body>
</html>

Let's look at the stars together

insert image description here


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>行星系统</title>
    <style type="text/css">
        body {
      
      
            background: #000;
        }

        .sun {
      
      
            width: 280px;
            height: 280px;
            margin-top: 200px;
            margin-left: 300px;
            border: 1px solid #FFA500;
            background: #FFA500;
            border-radius: 50%;
            box-shadow: 0px 0px 35px #FFA500;
            animation: action 10s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }

        @keyframes action {
      
      
            0% {
      
      
                transform: rotate(0deg)
            }
            100% {
      
      
                transform: rotate(360deg)
            }
        }

        .earth {
      
      
            border: 1px solid #0000CC;
            background: #0000CC;
            box-shadow: 0px 0px 35px #0000CC;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: -90px;
            animation: actions 5s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }

        @keyframes actions {
      
      
            0% {
      
      
                transform: rotate(0deg)
            }
            100% {
      
      
                transform: rotate(360deg)
            }
        }

        .moon {
      
      
            border: 1px solid #F0F0F0;
            background: #F0F0F0;
            box-shadow: 0px 0px 35px #F0F0F0;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-left: -20px;
        }
    </style>
</head>
<body>

<div class="sun">
    <div class="earth">
        <div class="moon"></div>
    </div>
</div>

</body>
</html>

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324064876&siteId=291194637