-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·86 lines (74 loc) · 2.98 KB
/
index.html
File metadata and controls
executable file
·86 lines (74 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/src/favicon.ico"/>
<link rel="apple-touch-icon" sizes="180x180" href="./src/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/src/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./src/favicon-16x16.png">
<link rel="manifest" href="./src/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<title>Ezhil Dev</title>
</head>
<body>
<div class="header">
<div class="logo">EZHIL <span>DEV</span></div>
<i class='bx bx-menu menu' id="menu"></i>
<div class="nav" id="menu-list">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</div>
</div>
<div class="home container" id="home">
<div class="home-contents">
<h1>Hi, I'm Ezhil</h1>
<p>A passionate software developer <br> <b><span>Who code for Fun.</span></p>
<a href="src/Ezhilarasan-Resume.pdf" class="btn" download>RESUME</a>
</div>
<div class="profile-img">
<img src="src/EZHIL-M.webp" draggable="false" alt="Ezhil">
</div>
</div>
<div class="separator"></div>
<div class="about container" id="about">
<h2 class="title">ABOUT</h2>
<div class="about-img">
<img src="src/about.svg" alt="about-img">
</div>
<div class="about-contents">
<h2>About</h2>
<p>Hi, my name is Ezhilarasan. I'm very passionate and dedicated to my work. I love coding and developing new solution for an appliction. Also a self taught learner🤓, problem solver🤔 and indie game developer🎮.</p>
</div>
</div>
<div class="separator"></div>
<div class="projects container" id="projects">
<h2 class="title">PROJECTS</h2>
<!-- js will fill the code here -->
</div>
<div class="separator"></div>
<div class="skills container" id="skills">
<h2 class="title">SKILLS</h2>
<h3>Programming Languages</h3>
<div class="item-container" id="prog">
</div>
<h3>Tools & Technologies</h3>
<div class="item-container" id="techs">
</div>
</div>
<div class="separator"></div>
<div class="contact" id="contact">
<h2 class="title">CONTACT</h2>
<div class="item-container" id="contact-links">
<a href="mailto:ezhilarasan.developer@gmail.com"><i class='bx bxl-gmail' ></i></a>
<a href="https://github.com/ezhildev/"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/ezhilarasan-developer/"><i class='bx bxl-linkedin' ></i></a>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>