-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
64 lines (49 loc) · 1.5 KB
/
about.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
<!DOCTYPE html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-134522365-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-134522365-2');
</script>
<style>
.card {
color: white;
padding: 20px;
margin-top: 20px;
font-family: modern1;
}
.fakeimg {
border-radius: 25px;
background-image: url("Images/html.jpg");
width: 100%;
padding: 20px;
}
</style>
<link rel="stylesheet" type="text/css" href="CSS/homepage.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=9" />
</head>
<html>
<body>
<div class="header">
<a href="index.html" class="logo"><img src="Images/kori.png" alt="Koorigitsune" height="40px" width="70px"></a>
<div class="header-right">
<a href="index.html">Home</a>
<a class="active" href="about.html">About me</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</div>
</div>
<div class="card">
<h2 style="font-size:50px;">Hi, my name is Thomas!</h2>
<hr>
<p style="font-size:20px;">I am a 14 year old dude who knows how to code in HTML, JavaScript, Ruby, Python, CSS, and C#.</p>
<div class="fakeimg" style="height:200px;"></div>
</div>
</body>
</html>