What this is
A simple page put together using HTML
Why this is
- To learn HTML
-
To show off
- To no one
- maybe some people online
- my mum
- my dad
- because the indie web is fun.

A simple page put together using HTML
1 | 2 | |
1 | 1 | 2 |
2 | 2 | 4 |
According to the MDN blockquote page:
The HTML
<blockquote>
Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation.
The quote element — <q>
— is
intended for short quotations that don't require paragraph breaks.
— MDN q page.
Trace amouts of a substance, known only by it's chemical formula (H2O) has been found in all water sources!
it is highly advised that you avoid contact with water until we finish analysis on water, so we can conclude how safe it is to handle
Today i will teach you how to make a game, where you have to guess a number from 1 to 10 in a set amount of attempts in python
i like it when turorials are to the point, so it'll just be code with relevant comments explaining what the code does
import random #allows the random number to be generated
tries = 5 #you can set this to anything you like
number = random.randint(1,10) #picks the random number
guess = 0 #placeholder value
while tries > 0: #loop of the game, end when tries run out
guess = int(input("guess the number: "))
if guess number:
print("too low")
elif guess > number:
print("too high")
if guess == number:
print("you win!")
break
tries -= 1
if tries == 0:
print("you ran out of tries")
i kind of gave up on commenting the code.
You can type this code into your code editor of choice and save with ctrl + s if you run the code you'll get something like this:
guess the number: 5 too high guess the number: 2 too low guess the number: 3 too low guess the number: 4 you win!
peices of code that i dont want to create context to use it