-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
92 lines (87 loc) · 2.6 KB
/
projects.html
File metadata and controls
92 lines (87 loc) · 2.6 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Projects</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a class="header-home" href="#">Mitra</a>
<nav>
<ul>
<li> <a href="../index.html">Home</a> </li>
<li> <a href="resume.html">My resume</a> </li>
<li> <a href="../Q2/contact.html">Contact</a> </li>
<li> <a href="../Q2/about.html">About me</a> </li>
</ul>
<a href="#" class="header-projects">Projects</a>
</nav>
</header>
<div class="wrapper">
<main>
<section class="projects-banner">
<h2>Some of my <br>University Project</h2>
<h1>Here you can find some of the projects i have done during my second degree studies.</h1>
</section>
<section class="section-projects">
<h2>Projects:</h2>
<a href="rollDiceGame/dice.html">
<div class="sp dice">
<p>Dice Game</p>
</div>
</a>
<a href="#">
<div class="sp java-finance">
<p>Finances</p>
</div>
</a>
<a href="#">
<div class="sp finance-tech">
<p>Finance Tech</p>
</div>
</a>
<a href="#">
<div class="sp dealership">
<p>Dealership Database</p>
</div>
</a>
<a href="#">
<div class="sp mobile">
<p>Flix</p>
</div>
</a>
<a href="#">
<div class="sp chat">
<p>Chating with Python</p>
</div>
</a>
</section>
</main>
<footer class="footer">
<div class="footer-pages">
<ul>
<li> <a href="#">Home</a> </li>
<li> <a href="#">Contact Me</a> </li>
<li> <a href="#">About me</a> </li>
<li> <a href="#">Projects</a></li>
<li> <a href="#">Resume</a></li>
</ul>
<div>
<div class="footer-projects">
<ul >
<li> <a href="#">Latest Projects:</a></li>
<li> <a href="#">Dice Game</a> </li>
<li> <a href="#">Finance Tech</a></li>
<li> <a href="#">Dealership Database</a></li>
<li> <a href="#">Chating with pythan</a> </li>
</ul>
</div>
<div class="footer-icons">
<a href="https://ca.linkedin.com/in/mitra-kazemzadeh-a74191128"> <img class="icons" src="icons/linkdin.png" alt=""> </a><br>
<a href="https://www.facebook.com/mitra.ka.12"> <img class="icons" src="icons/facebook.png" alt=""> </a>
</div>
</footer>
</body>
</div>
</html>