What this is

A simple page put together using HTML

Why this is

  • To learn HTML
  • To show off
    1. To no one
    2. maybe some people online
    3. my mum
    4. my dad
  • because the indie web is fun.
HTML Dog

times tables (because I can't think of anything else to do with a table)

1 2
1 1 2
2 2 4

a form

name

age

1-13
13-18
18-65
>65

age (again, just making sure)



A Very Factual dictionary

Bathtub
A very selfish pool for one or two people
mosquito
NOTHING BUT THE MOST UNHOLY EVIL SPAWN OF SATAN!
CAUSES ITCHES AND SICKNESS AND MAKES A HORRIBLE BUZZING SOUND.
a bug too... i guess

Great Quotes

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.

contact

Chris Mills, Manchester, The Grim North, UK

DANGEROUS CHEMICAL WARNING

This is a warning to all personnel who are in constant contact with water

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

How to make a nmber guessing game in python

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!

/////COPY PASTE ZONE/////

peices of code that i dont want to create context to use it

dates

















copy-pasted noah's arc registration form

Name:

Species:

Comments:

Are you:

Male

Female

An hermaphrodite

Asexual