generated from shanep/web-dev-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.06 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>About me</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Handjet:[email protected]&family=Matemasie&family=Shadows+Into+Light&display=swap">
</head>
<body>
<h1>About Me</h1>
<div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
</div>
<ul class="custom_bullets">
<li>My name is Anthony Malang.</li>
<li>I expect to graduate in December of 2024.</li>
<li>I do not currently have a job doing web development.</li>
<li>My internship did not have me doing any web development, the only
web developement that I have done was in the CS208 course.
</li>
</ul>
<img src="img/Me.jpg" class="image1" width="400" height="500">
<br></br>
<button id="button1">I know you want to click me</button>
<script type="module" src="js/main.js"></script>
</body>
</html>