Skip to content

Instantly share code, notes, and snippets.

@KrupeshDev
KrupeshDev / meta-tags.md
Created August 5, 2019 07:45 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset="UTF-8">
<meta name="keywords" content="your, tags">
<meta name="description" content="150 words">
<meta name="subject" content="your website"s subject">
<meta name="copyright" content="company name">
@KrupeshDev
KrupeshDev / comments.cpp
Last active August 4, 2019 11:15
Getting Started
// This is a single line comment
// Print Hello World on Screen
cout<<"Hello World";
/*
This is multiple line comment
See, this is another line and code is still commented
*/
cout<<"One Should develope habit of writing comments";
@KrupeshDev
KrupeshDev / python.py
Last active August 4, 2019 11:09
Getting Started
print("Hello, World!")
@KrupeshDev
KrupeshDev / cout.cpp
Last active August 4, 2019 11:08
Getting started
cout<<"Hello, World!";
@KrupeshDev
KrupeshDev / main2.cpp
Created August 4, 2019 11:03
Getting started
int main(){
}
@KrupeshDev
KrupeshDev / main.cpp
Created August 4, 2019 11:02
Getting Started
int main(){
cout<<"Hello, World!";
}
@KrupeshDev
KrupeshDev / first2lines.cpp
Created August 4, 2019 10:59
Getting Started
#include <iostream>
using namespace std;
@KrupeshDev
KrupeshDev / helloworld.cpp
Created August 4, 2019 10:56
Getting Started with programming - Medium
#include <iostream>
using namespace std;
int main(){
cout<<"Hello, World!";
}