-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 2.52 KB
/
Copy pathindex.html
File metadata and controls
68 lines (63 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>CSS - My Page</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico"> <!-- use icon for link tag-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
</head>
<body>
<h1 font-family="serif" class="heading">
<strong>
welcome to my page.
</strong>
</h1>
<div class="top-container">
<img class="top-cloud" src="images/cloud.png" alt="cloud-img">
<h1>I'm Haskell.</h1>
<p class="text">
a <span class= "pro">pro</span>grammer. <!-- span is an inline element!! -->
</p>
<img class="bottom-cloud" src="images/cloud.png" alt="cloud-img">
<img src="images/mountain.png" alt="cloud-img">
</div>
<div class="middle-container">
<div class="profile">
<img src="" alt="">
<h2>Hello.</h2>
<p>I'm Haskell, a computer science major at UC Davis.</p>
</div>
<hr>
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img class="coding-img" src="images/coding-and-testing-programming-of-software.jpg" alt="a-coding-img">
<h3>Tutoring</h3>
<p>I have tutored students at Las Positas in computer science courses, offering support on projects/tests/quizzes as well.</p>
</div>
<div class="skill-row">
<img class="kuki-img" src="images/kuki2.png" alt="">
<h3>Proficiency in C++ </h3>
<p>I have made simple projects wtih C++, such as menu tables, implementing data structures, and dynamic memory allocation.</p>
</div>
</div>
<hr>
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>Feel free to contact me through my email, LinkedIn, or phone number.</h3>
<p>If you are looking to hire me, pls hmu :)</p>
<a class="btn" href="mailto:haskellmacaraig@gmail.com">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/">LinkedIn</a>
<a class="footer-link" href="https://twitter.com/">Twitter</a>
<a class="footer-link" href="https://www.appbrewery.co/">Website</a>
<p>© HaskMoney</p>
</div>
</div>
</body>
</html>