Skip to content

kawtar1234/ex-Markdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Exercise 1

####italic and bold: Writing in Markdown is not that hard! I will complete these lessons! "Of course," she whispered. Then, she shouted: "All I need is a little moxie!" If you're thinking to yourself, This is unbelievable, you'd probably be right.

###headers:

Header one

Header two

###Header three ####Header four #####Header five ######Header six ####Colombian Symbolism in One Hundred Years of Solitude

Here's some words about the book One Hundred Years.... ###Links: Search for it.() You're really, really going to want to see this. ####The Latest News from the BBC

Do you want to see something fun?

Well, do I have the website for you!

images:

A pretty tige

Black cat

Orange cat

####Blockquotes:

I read this interesting quote the other day:

"Her eyes had called him and his soul had leaped at the call. To live, to err, to fall, to triumph, to recreate life out of life!"

Once upon a time and a very good time it was there was a moocow coming down along the road and this moocow that was coming down along the road met a nicens little boy named baby tuckoo...

His father told him that story: his father looked at him through a glass: he had a hairy face.

He was baby tuckoo. The moocow came down the road where Betty Byrne lived: she sold lemon platt.

He left her quickly, fearing that her intimacy might turn to jibing and wishing to be out of the way before she offered her ware to another, a tourist from England or a student of Trinity. Grafton Street, along which he walked, prolonged that moment of discouraged poverty. In the roadway at the head of the street a slab was set to the memory of Wolfe Tone and he remembered having been present with his father at its laying. He remembered with bitterness that scene of tawdry tribute. There were four French delegates in a brake and one, a plump smiling young man, held, wedged on a stick, a card on which were printed the words: VIVE L'IRLANDE!

####Lists:

  • Flour
  • Cheese
  • Tomatoes
  1. Cut the cheese
  2. Slice the tomatoes
  3. Rub the tomatoes in flour
  • Azalea (Ericaceae Rhododendron)

  • Chrysanthemum (Anthemideae Chrysanthemum)

  • Dahlia (Coreopsideae Dahlia)

  • Calculus

  • A professor

  • Has no hair

  • Often wears green

  • Castafiore

  • An opera singer

  • Has white hair

    • Is possibly mentally unwell
  1. Cut the cheese
  • Make sure that the cheese is cut into little triangles.

  1. Slice the tomatoes
  • Be careful when holding the knife.

  • For more help on tomato slicing, see Thomas Jefferson's seminal essay Tom Ate Those.

We pictured the meek mild creatures where 

They dwelt in their strawy pen,

Nor did it occur to one of us there

To doubt they were kneeling then. 

  1. Crack three eggs over a bowl.
 Now, you're going to want to crack the eggs in such a way that you don't make a mess.
 If you _do_ make a mess, use a towel to clean it up!
  1. Pour a gallon of milk into the bowl.
 Basically, take the same guidance as above: don't be messy, but if you are, clean it up!

Exercise 2


The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.


Keyhole Markup Language (KML) is an XML notation for expressing geographic annotation and visualization within two-dimensional maps and three-dimensional Earth browsers. KML was developed for use with Google Earth, which was originally named Keyhole Earth Viewer. It was created by Keyhole, Inc, which was acquired by Google in 2004. KML became an international standard of the Open Geospatial Consortium in 2008. Google Earth was the first program able to view and graphically edit KML files, but other projects such as Marble have added KML support.


Exercise 3

youtube

cat

###Exercise 4

public class Person{
  private string name;
  private int age;

  public Person(string initialName)
  {
    this.age = 0;
    this.name = initialName;
  }
  public void PrintPerson()
  {
    Console.WriteLine(this.name + ", age " + this.age + " years");
  }
  public void GrowOlder()
  {
    this.age = this.age + 1;
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published