top of page

LINUXTECH

Your Go-To Source

Graphic Designer Desk
Student in Library
Working from Home
Modern Digital Watch
Woman with Headphones
Clicking on a Tablet
Search

HOw to make a simple login form using HTML.

source code: <html> <head> <title>Login Page</title> </head> <body> <form name="loginForm" method="post" action="login.php"> <table...

How to make a simple snake game using html

source code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width,...

How to make a simple chessboard using HTML

source code: <html> <head> <meta charset="UTF-8"> <title>simple chessborad made by linux tech</title> <style type="text/css"> .chessboard...

Make a simple analog clock using HTML

source code: <!doctype html> <html> <head> <title>simple analog clock made by linux tech</title> </head> <body> <canvas id="canvas"...

how to make a simple calculator using HTML.

<!DOCTYPE html> <html> <head> <title>Calculator - Linux Tech</title> </head> <body> <div id='calc-contain'> <form name="calculator">...

How to make a simple zombie game using c++

#include <iostream> #include <stdlib.h> #include <unistd.h> #include <time.h> using namespace std; int createZombie() { if (rand() % 67...

how to make a tic tac toe game from c++

plz like,share and subscribe to my channel if you like the code- raw code- #include <iostream> using namespace std; char matrix[3][3] = {...

how to make a simple clock using python

import time while True: from datetime import datetime now = datetime.now() print ("%s/%s/%s %s:%s:%s" % (now.month,now.day,now.year,now.h...

Home: Blog2
Home: Contact

Subscribe Form

Home: Subscribe
bottom of page