Skip to content

Instantly share code, notes, and snippets.

@omarbassam88
omarbassam88 / HTML_EXERCISE_2.md
Last active February 7, 2025 16:30
HTML_EXERCISE_2

Build a web page using the following elements:

  1. A heading (<h1>) with the Message "Welcome to Egypt".
  2. An image (<img>) showing an image of pyramids.
  3. A link using <a> tag the opens a web site in a new tab.
  4. A form where the user can send a message to the website.
@omarbassam88
omarbassam88 / strings_lists.py
Last active December 13, 2024 18:04
Strings and Lists Exercise
# Write a function that takes the first and last name of the person and print the full name
full_name("Omar", "Bassam") # Omar Bassam
@omarbassam88
omarbassam88 / functions-question.py
Last active December 7, 2024 13:46
Python Programming Exercise: Functions
# Write the definition of the function print_attendance below this line
students = ["Hassan", "Morkos", "Layla", "Sara", "Sherif"]