2015-09-27 69 views
0

我想讓我的html網站頁面擁有「最美麗的定理?」部分在右側。但是,我無法弄清楚如何做到這一點。現在它只是像正常一樣出現在我的其他所有標題下,但我希望它作爲單獨的列在頁面的右側。如果你能幫助我,那會很棒。謝謝! 這裏的編碼我現在有:html標題問題放在哪裏

<!DOCTYPE html> 
<html lang="en"> 
<!-- Math High home page 
McLain-Graning MaKayla, CSIS 140, Fall 2015 
--> 
<head> 
<meta charset="utf-8" /> 
<title>Math High</title> 
<link href="css/MathHighStyles.css" rel="stylesheet" type="text/css"/> 
</head> 
<body> 
<header> 
<img src="images_MathHigh/mhlogo.jpg" alt="Math High"/> 
<h2>Leonhard Euler (1707-1783)</h2> 
</header> 
<section> 
<article> 
<p> 
The greatest mathematician of the eighteenth century, 
<strong>Leonhard Euler</strong> was born in Basel, Switzerland. There, 
he studied under another giant of mathematics, <strong>Jean 
Bernoulli</strong>. In 1731 Euler became a professor of physics 
and mathematics at St. Petersburg Academy of Sciences. 
Euler was the most prolific mathematician of all time, 
publishing over 800 different books and papers. His 
influence was felt in physics and astronomy as well. 
</p> 
</article> 
<p> 
He is perhaps best known for his research into 
mathematical analysis. Euler's work, 
Introductio in analysin infinitorum (1748), 
remained a standard textbook in the field for 
well over a century. For the princess of Anhalt-Dessau he wrote 
Lettres a une princesse d'Allemagne (1768-1772), 
giving a clear non-technical outline of the main 
physical theories of the time. 
</p> 
<p> 
One can hardly write a mathematical equation without 
copying Euler. Notations still in use today, such 
as e and pi, were introduced 
in Euler's writings. Leonhard Euler died in 1783, 
leaving behind a legacy perhaps unmatched, and 
certainly unsurpassed, in the annals of mathematics. 
</p> 
</section> 
<aside> 
<h1>The Most Beautiful Theorem?</h1> 
<p>Euler's Equation:</p> 
<p>cos(x) + i*sin(x) = e to the power (i*x)</p> 
<p>demonstrates the relationship between algebra, 
complex analysis, and trigonometry. From this 
equation, it's easy to derive the identity: 
</p> 
<p>e to the power (pi*i) + 1 = 0</p> 
<p>which relates the fundamental constants: 
0, 1, pi, e, and i in a single beautiful and 
elegant statement. A poll of readers 
conducted by The Mathematical Intelligencer 
magazine named Euler's Identity as the 
most beautiful theorem in the history of 
mathematics.</p> 
<p>Math High: A Site for Educators and Researchers</p> 
</aside> 
</body> 
</html> 
+0

爲什麼不使用CSS? – Manu

+0

你試過的CSS在哪裏? – amespower

+0

如果我使用CSS,那麼我將如何將它移動到右側並在其後面放置背景?我知道這可能聽起來超級簡單......但我的學校的老師非常糟糕,無法教授基本知識。 – Cakers

回答