-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 2.23 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My PHP Projects</title>
<link rel="stylesheet" href="./Styles/style.css">
</head>
<body>
<nav>
<ul>
<li>
<a href="https://jimmyahalpara.github.io">Home</a>
</li>
<li>
<a href="index.html">PHP Projects</a>
</li>
<li>
<a href="https://jimmyahalpara.github.io">Other Projects</a>
</li>
</ul>
</nav>
<div class="mainContent">
<h1>
PHP Projects
</h1>
<div class="description">
These are some of my work in PHP. I have worked with other backends like Node.js, React and angular too. For PHP, my primary platform for learning was Coursera Specialization - Web Application for Everybody.
</div>
<h1>
<h2>
Beginners Level
</h2>
<div class="description">
These are some of the first PHP applications which I wrote. It does not use any Database. Many of them were part of Assignments from Specialization which I did.
</div>
<ul class="projectList">
<li><a href="FileHashCalculator/fileHashCalculatorHomepage.html">File Hash Calculator</a> - Finds Hash value of Uploaded file using around 52 hash functions.
</li>
<li><a href="StonePapperScissor/StonePaperScissorHomepage.html">Rock Papper Scissor Game</a> - Simple Rock Papper Scissor Game
</li>
<li><a href="MD5Breaker/MD5BreakerHomepage.html">MD5 Hash Code Breaker</a> - Uses Brute Force to find 4 digits pin from its hash.
</li>
<li><a href="sha256Calculator/sha256CalculatorHomepage.html">SHA 256 Calculator</a> - Simple application to find SHA 256 value of any input text
</li>
<li><a href="numberGussingGame/numberGussingGameHomepage.html">Number Gussing Game</a> - Simple number guessing game
</li>
</ul>
</h1>
</div>
</body>
</html>