forked from alpharomercoma/sample-ghp-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="card">
<div class="card-info">
<div class="card-image">
<img src="hutao.webp" alt="Hu Tao">
</div>
<div>
<h2 class="card-name">Hu Tao (胡桃)</h2>
<p class="card-title">Software Engineer</p>
<div class="social-icons">
<a href="#" class="social-icon" aria-label="Github"><i class="fab fa-github"></i></a>
<a href="#" class="social-icon" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="social-icon" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
<a href="#" class="social-icon" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-icon" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<p class="card-description">Voracious & relentless <strong>Software Developer</strong> on a mission to achieve AI sentience. Pleasure to work with you.</p>
<div class="button-container">
<a href="mailto:[email protected]" class="action-button">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 8 18-5-18 5v10h18v-10"/><path d="m3 8 6 5"/><path d="m21 3-6 5"/></svg>
Let's Innovate!
</a>
</div>
</div>
</div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</body>
</html>