-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (89 loc) · 3.66 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
<!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>Arsham Mehrani</title>
<link rel="stylesheet" href="style.css">
<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=Montserrat:ital,wght@0,100;0,200;0,600;1,200&display=swap" rel="stylesheet">
</head>
<body>
<div class="hero">
<!-- Navigation -->
<div class=nav_container>
<nav class=sticky>
<!-- options -->
<ul class="center-this">
<li><a href="./contactme.html">Contact me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="https://github.com/Arsham1024" target="_blank">Github</a></li>
<li><a href="https://www.linkedin.com/in/arsham-mehrani/" target="_blank">Linkedin</a></li>
<li><a href="./content/ArshamMehrani_Resume.pdf" target="_blank">Resume</a></li>
</ul>
</nav>
</div>
<div class="hero_container">
<!-- Header div -->
<div class="header">
<h1>Arsham Mehrani</h1>
<div class="links">
<a class= "resume_button" href="./content/ArshamMehrani_Resume.pdf" target="_blank">resume</a>
</div>
</div>
<!-- my images -->
<div class="me">
<img src="images/my_background.png" class="abstract">
<img src="images/me_nobackground.png" class="me_img">
</div>
</div>
</div>
<!-- Projects div here -->
<div class="projects" id="projects">
<div class=projects_headline>
<h1 class="projects_headline">Projects</h1>
</div>
<!-- each one must be a link -->
<div class="projects_container">
<a href="https://github.com/Arsham1024/Introduction_ML" target="_blank">
<div class="proj">
<h3 class="proj_title">Machine Learning Algorithms</h3>
<h5>Python</h5>
</div>
</a>
<a href="https://github.com/Arsham1024/Web_Search_Engines" target="_blank">
<div class="proj">
<h3 class="proj_title">Web Search Engines</h3>
<h5>Python</h5>
</div>
</a>
<a href="https://github.com/Arsham1024/Numerical_Methods" target="_blank">
<div class="proj">
<h3 class="proj_title">Numerical Methods</h3>
<h5>Java</h5>
</div>
</a>
<a href="https://github.com/Arsham1024/ML_Project" target="_blank">
<div class="proj">
<h3 class="proj_title">Heart Disease Prediction</h3>
<h5>Python</h5>
</div>
</a>
<a href="https://github.com/Arsham1024/music_recommender" target="_blank">
<div class="proj">
<h3 class="proj_title">Music Recommender</h3>
<h5>Python</h5>
</div>
</a>
<a href="https://github.com/Arsham1024/Discord_Bot" target="_blank">
<div class="proj">
<h3 class="proj_title">Discord Bot</h3>
<h5>Python</h5>
</div>
</a>
</div>
</div>
</body>
</html>