Contoh Penulisan HTML
<html>
<head>
<title>Tag Dasar HTML</title>
</head>
<body>
Selamat Belajar
</body>
</html>

Contoh Penulisan CSS
<style type="text/css">
body { scrollbar-arrow-color: ffffff; scrollbar-base-color:ffffff; 
scrollbar-dark-shadow-color: ffffff; scrollbar-track-color: ffffff; scrollbar-face-color: 
ffffff; scrollbar-shadow-color: ffffff; scrollbar-highlight-color: ffffff; scrollbar-3d-light-color: 
ffffff; }
</style>

Contoh Penulisan C++
#include 
using namespace std;
class MyClass {
  int i;
public:
  void setInt(int j) { 
     i=j; 
  }
  int getInt() { 
     return i; 
  }
};
int main()
{
  MyClass myObject[3];
  int i;
  for(i=0; i<3; i++) 
     myObject[i].setInt(i+1);
  for(i=0; i<3; i++)
     cout << myObject[i].getInt() << "\n";
  return 0;
}

Contoh Penulisan PHP