-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (75 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Parsa's Website</title>
<link rel="stylesheet" href="css/stylesheet.css" />
<link rel="icon" href="favicon.ico" />
<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=Merriweather+Sans:wght@300&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="top-container">
<img class="logo-top" src="logo.PNG" />
<h1>I'm Parsa</h1>
<h2>a developer.</h2>
<img id="code" src="developer_med.gif" />
<img id="desktop" src="background.jpg" />
</div>
<div class="middle-container">
<div class="profile">
<img class="logo-bottom" src="logo.PNG" />
<h2>Hello.</h2>
<p>
I am a programmer. This is the second website I created when I began
web development.
</p>
</div>
<hr />
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<a href="https://www.flaticon.com/free-icons/python">
<img class="skills-img" src="python.PNG" />
</a>
<h3>Python</h3>
<p>
I began coding with Python. I've written lots of different programs,
from basic games using Turtle package, my first software using
Tkinter and other automation programs involving data handling and
APIs.
</p>
</div>
<div class="skill-row">
<a href="https://www.flaticon.com/free-icons/web-development">
<img class="html-img" src="web-development.PNG" />
</a>
<h3>Web Development</h3>
<p>
I also love web development. I have spent alot of time learning and working
with platforms such as Javascript, React and Bootstrap.
</p>
</div>
</div>
<hr />
<div class="contact-me">
<h2>Get In Touch</h2>
<p class="contact-msg">
If you like to see my progress and other work, checkout my other
platforms.
</p>
<a class="btn" href="mailto:[email protected]">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/">LinkedIn</a>
<a class="footer-link" href="https://twitter.com/">Twitter</a>
<a class="footer-link" href="https://github.com/parsa-mo">GitHub</a>
<p class="copyright">© 2023 Parsa Mousavi.</p>
</div>
</body>
</html>