-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (119 loc) · 5.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oxygen&family=Oxygen+Mono&display=swap"
rel="stylesheet"
/>
<title>Muzammil Hussain's Portfolio</title>
</head>
<body>
<nav>
<ul>
<li><h1><a href="index.html">
<span class="fas fa-code" aria-hidden="true"></span> Muzammil Hussain</a></h1></li>
<li><a href="#projects">Projects</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="https://www.linkedin.com/in/muzammilfive" target="_blank">
<span class="fab fa-linkedin" aria-hidden="true"></span> <span class="sr-only">LinkedIn</span>
</a>
</li>
<li><a href="https://github.com/MuzammiLFive" target="_blank"> <span class="fab fa-github" aria-hidden="true"></span> <span class="sr-only">Github</span></a></li>
<li><a href="https://www.dropbox.com/s/e22vau85j7l0por/Muzammil%20Hussain.pdf?dl=0" target="_blank" class="button">Resume</a></li>
</ul>
</nav>
<section id="intro">
<p class="name">Hi, my name is <span>Muzammil Hussain.</span></p>
<h2>I develop full stack web applications.</h2>
<p>I'm a developer specializing in Web components and Spring boot.</p>
<p>
I'm currently working for
<a href="https://www.dbs.com/asia-hub-2/index.html" target="_blank"
>DBS Bank</a
> as an Application Developer.
</p>
<p></p>
</section>
<div class="gradient"></div>
<div class="section-blue">
<section id="projects">
<div
<h2>Projects I'm proud of</h2>
<article>
<div class="text">
<h4>Latest Project</h4>
<h3>Pneumonia Identification</h3>
<p class="blackbox">A web based application to identify pneumonia based on chest x-ray images. The frontend is supported by a Depthwise Convolution Neural Network model that classifies pneumonia with an accuracy of <b>94%</b>.<br>You can find the code <a href="https://github.com/MuzammiLFive/Classification_of_Pneumonia" target="_blank">here</a>.</p>
<h4>Technologies used include:</h4>
<ul>
<li>Deep Learning</li>
<li>Kaggle Kernel</li>
<li>Tensorflow</li>
<li>Django</li>
</ul>
</div>
<img src="img/pneumonia.png" alt="Screenshot of Pneumonia Identification." />
</article>
<article class="reverse">
<div class="text">
<h4>Personal Project</h4>
<h3>Random cat image generator</h3>
<p class="blackbox">Web application using angular 9 that requests an online api for cat images/gifs.<br>You can find the code <a href="https://github.com/MuzammiLFive/cat-app-angular9" target="_blank">here</a>.</p>
<h4>Technologies used include:</h4>
<ul>
<li>Angular 9</li>
<li>TypesScript</li>
<li>CSS</li>
</ul>
</div>
<img src="img/cat-app.JPG" alt="Screenshot of Pneumonia Identification." />
</article>
<article>
<div class="text">
<h4>College Mini Project</h4>
<h3>Don't Cross The Line</h3>
<p class="blackbox">
Replica of a mini game in GTA 5. This is a 2 player game played on the same computer with different control keys for two players. The difficulty can be set to three modes. <br> You can check the code out
<a href="https://github.com/MuzammiLFive/Don-t_Cross_The_Line" target="_blank">here</a>
</p>
<h4>Technologies used include:</h4>
<ul>
<li>C</li>
<li>C Graphics</li>
</ul>
</div>
<img src="img/dctl.png" alt="Screenshot of DCTL game." />
</article>
</section>
</div>
<div class="gradient"></div>
<div class="section-plum">
<section id="contact">
<h2>Contact me</h2>
</p>I'm always interested in hearing about new opportunities and similar interests.</p>
<p><a href="mailto:muzammil@example.com" class="button">Email me</a></p>
</section>
<div class="gradient"></div>
</div>
<footer>
<h2>Muzammil Hussain · Full Stack Developer</h2>
<ul>
<li><a href="https://www.linkedin.com/in/muzammilfive" target="_blank">
<span class="fab fa-linkedin" aria-hidden="true"></span> <span class="sr-only">LinkedIn</span>
</a>
</li>
<li><a href="https://github.com/MuzammiLFive" target="_blank"> <span class="fab fa-github" aria-hidden="true"></span> <span class="sr-only">Github</span></a></li>
<li><a href="mailto:muzammil@example.com" target="_blank"> <span class="fas fa-envelope" aria-hidden="true"></span> <span class="sr-only">Mail</span></a></li>
</ul>
<p><small>© 2022 Muzammil Hussain. All rights reserved.</small></p>
</footer>
</body>
</html>