-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.78 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
<!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">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<link rel = "stylesheet" href="index.css">
<title>Joseph Jophy</title>
</head>
<body>
<div class="main">
<div class = "profile">
<div class = "profile-pic"> <img class = "profile-pic-img" src = "/images/profilepic.png" alt = "joseph-jophy-profile-pic"></div>
<h2 class = "name">Joseph Jophy</h2>
<div class = "intro-container">
<h1> <span class = "auto-type intro"></span></h1>
</div>
<script>
var type = new Typed('.auto-type',{
strings: ["Artificial Intelligience", "Software Engineer", "Computer Science", "Ambitious"],
loop: true
});
</script>
<div class="links">
<span class = "message-icon"> <a href = "mailto:3815hunters@gmail.com" > <img id = "message-icon-img" src = "/images/message-icon.png" alt = "message-icon-pic"></a></span>
 
<span class = "github-icon"><a href = "https://github.com/josephjophy" ><img id = "github-icon-img" src = "/images/github-icon.png" alt = "github-icon-pic"> </a></span>
 
<span class = "linkedin-icon"><a href = "https://www.linkedin.com/in/joseph-jophy/"><img id = "linkedin-icon-img" src = "/images/linkedin-icon.png" alt = "linkedin-icon-pic"></a></span>
</div>
</div>
</div>
</body>
</html>