-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (37 loc) · 1.33 KB
/
index.html
File metadata and controls
51 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>My profile</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/b76cc7c7d8.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="white_card" id="introduction">
<h1>Hello, I'm Patrick</h1>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Patrick_Star.svg/1200px-Patrick_Star.svg.png" width="100px" alt="This is what Google associates with Patrick apparently">
<p>
I come from Noray. I work at Tencent. I cant code. I like to travel.
</p>
</div>
<div class="white_card">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/patrickcantcode" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/patcol/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</body>
</html>
</div>