Trevor's Site

Trevor's Website

I am learning HTML and CSS. This website serves as a platform for me to practice what I have learned and maybe show off my skills a bit.

Images

HTML Logo
CSS Logo
Bootsrap Logo


More info on images

Links

Page 2
More info on links

Lists

  1. Item 1
  2. Item 2
  3. And so on...
  4. More info on lists

Code

Here you can see some sample source code.

int main()
{
int a = 5;
int b = 6;
cout << "The sum of << a << and << b << "is : " << a+b << endl;

cout << "The difference of << a << and << b << "is : " << a-b << endl;

return 0;
}