LINUXTECH
Your Go-To Source
![]() | ![]() | ![]() |
|---|---|---|
![]() | ![]() | ![]() |
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 digital clock using HTML.
source code: <html> <head> <title>Digital Clock made by linux tech </title> <link href="https://fonts.googleapis.com/css?family=Orbitron"...
how to make a simple registration form using HTML.
source code: <Html> <Html> <head> <title> Registration Page </title> </head> <body bgcolor="skyblue"> <br> <br> <form> <label> Firstname...
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 run and play minecraft for free in ubuntu 18.04
first you need to uninstall java9 and java10 , because the launcher which i am going to show you guys will only run with java8 . so run...
How to make a simple calculator using go language-
package main import "fmt" func main() { var operator string var number1, number2 int fmt.Print("Please enter First number: ")...
how to install go , compile and run it in ubuntu18.04
first we need to install golang by typing: sudo apt-get install golang then we will update the system sudo apt-get update then we will...
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 GUESS THE WORD GAME USING PYTHON
import random WORD = ('apple', 'oracle', 'amazon', 'microsoft') word = random.choice(WORD) correct = word clue = word[0] +...
HOW TO MAKE A SIMPLE SNAKE GAME USING PYTHON
# SNAKES GAME # Use ARROW KEYS to play, SPACE BAR for pausing/resuming and Esc Key for exiting import curses from curses import...
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...
How to make a simple snake game using c++ language
#include<iostream> #include<cstdlib> #include<stdio.h> #include <termios.h> #include <unistd.h> #include <fcntl.h> #include <stdio.h>...
















