-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (76 loc) · 3.26 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
<!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>Home Page</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-------------- Header ------------->
<header>
<nav>
<a href="home.html" id="title"><h4>My Website Resume</h4></a>
<div class="nav-links">
<ul>
<li class="selected-page" ><a href="#about-me" >About Me</a></li>
<li><a href="#game-prototyping">Prototyping</a></li>
<li><a href='#research-programming'>Research</a></li>
<li><a href="#codingbn-training">Coding.bn</a></li>
</ul>
</div>
</nav>
<div class="main-banner" id="about-me">
<div class="left-div">
<div>
<h1><span id="my-greeting">Hi,</span><br><span id="my-intro">My name is</span> <span id="my-name">Muizz Kasim</span></h1>
<br>
<p>I am a Coder and Photographer with an aspiration to be a full stack <br>developer</p>
<br>
</div>
<br>
<div class="buttons">
<a href="document/cv.pdf" download="cv-muizzkasim.pdf">Get my CV</a>
</div>
<br>
</div>
<div class="right-div"></div>
</div>
<div class="content1" style="color:white" id="game-prototyping">
<div class="left-div">
<img src="./image/game-prototyping.png" width="350" height="350">
</div>
<div class="right-div">
<h1>Game Prototyping</h1>
<br>
<p>A series of game prototyping projects implementing<br> new game ideas as well as being explorative and fun <br>means of learning programming languages. Projects <br> were developed using Unity Engine and C# language.</p>
</div>
</div>
<div class="content2" id="research-programming">
<div class="left-div">
<h1>Research Programming</h1>
<br>
<p>Research-oriented work involving creating small programs used for <br> data collection, which are later used for analysis and data visualization. <br> Python and C# was used to accomplish this task.</p>
</div>
<div class="right-div">
<img src="./image/research.png" width="350" height="350">
</div>
</div>
<div class="content3" style="color:white" id="codingbn-training">
<div class="left-div">
<img src="./image/codingbn.png" width="350" height="350">
</div>
<div class="right-div">
<h1>Coding.bn Training</h1>
<br>
<p>Six months intensive training involving the learning of holistic <br> web development technologies including HTML, CSS, Javasript,<br> SQL, Nodejs, and Reactjs.</p>
</div>
</div>
</header>
<footer>
<p>Created and Designed by <i>Muizz Kasim</i></p>
<p>Coding.bn</p>
</footer>
</body>
</html>