You are on page 1of 5

Python

secret_word = "Donald"
guess = ""
guess_count = 0
guess_limit = 3
out_of_guesses = False

while guess != secret_word and not(out_of_guesses):


if guess_count < guess_limit:
guess = input("Enter guess: ")
guess_count += 1
else:
out_of_guesses = True
if out_of_guesses:
print("Out of Guesses, And Guess what, YOU LOST! HA HA HA HA")
else:
print("Finally, YOU WON! YEAH")

from Question import Question


question_prompts = [
"What color is a football fielld?\n(a) Blue\n/(b) Red\n(c) Green\n\n"
"What color is a Juventus shirt?\n(a) Blue\n/(b) Black/White\n(c)
Green\n\n"
]

questions = [
Question(question_prompts[0], "a"),
Question(question_prompts[1], "c"),
Question(question_prompts[2], "b")
]

def run_test(questions):
score = 0
for question in questions:
answer = input(question.prompt)
if answer == question.answer:
score += 1
print("You got" + str(score) +"/" + str(len(questions))) + "Correct"

class Question:
def __init__(self, prompt, answer):
self.prompt = prompt
self.answer = answer
HTML
<div id= "main">

<h1 id= "title">

Mikhail Kutuzov

</h1>

<h2> General of Russia</h2>

<div id = "img-div">

<img id = "image" src =

"https://encrypted-tbn0.gstatic.com/images?
q=tbn:ANd9GcQdK49LMnNbvXWW8gltnpw3SMJzlBCrE5vDkw&usqp=CAU" alt id = "img-caption" =
"Mikhail Kutuzov"

</img>

</div>

<p id = "img-caption"> Mikhail Kutuzov a prince and a Field Marshal of the Russian Empire </p>

<p id = "tribute-info"> Prince Mikhail Illarionovich Golenishchev-Kutuzov (Mikhail Illarion


Golenishchev-Kutuzov Graf von Smolensk) (Russian: князь Михаи́ л Илларио́ нович Голени́ щев-
Куту́зов; 16 September [O.S. 5 September] 1745 – 28 April [O.S. 16 April] 1813) was a Field Marshal of
the Russian Empire. He served as one of the finest military officers and diplomats of Russia under the
reign of three Romanov Tsars: Catherine II, Paul I and Alexander I. His military career was closely
associated with the rising period of Russia from the end of the 18th century to the beginning of the 19th
century. Kutuzov is considered to have been one of the best Russian generals.[1]

<br> <br>

He was born in Saint Petersburg in 1745 to a family of Novgorod nobility. His father was a Russian
general and senator. Kutuzov began military schooling at age 12 and joined the Imperial Russian Army in
1759. Three years later Kutuzov became a company commander in the Astrakhan Infantry Regiment
under Alexander Suvorov. He took part in crushing the Polish Bar Confederation rebellion. During the
Russo-Turkish War of 1768–1774 he served in the staff of Pyotr Rumyantsev at Moldova for the battles
of Larga and Kagul.[2] In July 1774 at Crimea, Kutuzov was severely wounded by a bullet that went
through his temple and out near his right eye, which became permanently scarred. He returned to
Crimea in 1776 to assist Suvorov and conducted negotiations with the last Crimean khan Şahin Giray,
convincing him to abdicate and submit to Russia.<br> <br>

After Kutuzov became Governor-General of Crimea in 1787, the Russo-Turkish War of 1787–1792 began.
He was again severely wounded in 1788 during the Siege of Ochakov when a bullet was shot through
both of his temples. Kutuzov came back a year later, taking part in the Battle of Rymnik and Siege of
Izmail. Near the end of the war, he led a decisive charge at the Battle of Măcin.[2] Kutuzov was on good
terms with Tsar Paul, but had disputes with his successor Tsar Alexander. In 1805, he led Russian forces
alongside Austria during the Napoleonic Wars. The allied Russo-Austrian army was defeated by
Napoleon at the Battle of Austerlitz. Alexander blamed Kutuzov and demoted him to Moldova for the
Russo-Turkish War of 1806–1812. Kutuzov vanquished a four-times larger Turkish army at Rousse and
brought an end to the war with a decisive victory at the Battle of the Danube. For his achievements, he
was awarded the titles of count and prince.<br> <br>

Kutuzov returned at the request of Alexander for the French invasion of Russia. He was appointed
Commander-in-Chief, succeeding Barclay de Tolly and continued his scorched earth policy up to
Moscow. Under Kutuzov's command, the Russian army faced the Grande Armée at the Battle of
Borodino. He allowed Napoleon to take an abandoned Moscow, which was set on fire. Kutuzov counter-
attacked once Napoleon retreated from Moscow, pushing the French out of the Russian homeland.[3] In
recognition of this, Kutuzov was awarded the victory title of Prince Smolensky.[2] He stepped down from
command due to deteriorating health soon after the French left Russia. Kutuzov died in 1813 at Bunzlau
and was buried at the Kazan Cathedral in Saint Petersburg. Kutuzov was highly regarded in the works of
Russian and Soviet historians.

<a href = "https://en.wikipedia.org/wiki/Mikhail_Kutuzov" target = "_blank" class = "tribute-link"> Click


here ! For Further Information about Mikhail Kutuzov</a>

</div>
CSS
body {

text-align: center;

h1{

font-family: Sans-serif;

font-size: 60px;

h2 {

color: #00008b;

font-size: 30px

#image {

height: 450px;

max-width: 100%;

#img-caption {
font-family: Sans-serif;

p{

font-family: Helvetica;

.tribute-link {

font-size: 30px;

You might also like