#include<iostream> using namespace std; int main() { return 0; }
Hello World Program in C++
#include<iostream> using namespace std; int main() { cout<<"Hello World"; return 0; }
What is HTML?
HTML is a markup language for describing web pages. HTML was invented in 1990 by a scientist called Continue reading
HTML Tags
HTML tags are keywords (tag names) surrounded by angle brackets:
<tagname>content</tagname>
- HTML tags normally come in pairs like <p> and </p>
- The first tag in a pair is the start tag, the second tag is the end tag
- The end tag is written like the start tag, but with a slash before the tag name Source