-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
26 lines (22 loc) · 825 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!-- ^ the viewport meta tag is to make your webpage responsive according to screen size -->
<title>Jessie Singh</title>
<!-- ^ your webpage's title -->
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- ^ where we link our CSS file to our webpage -->
</head>
<body>
<div>
<img src="https://media-exp1.licdn.com/dms/image/C5603AQH0ti9Q1RQ9mA/profile-displayphoto-shrink_200_200/0/1517037861718?e=1613001600&v=beta&t=1je_ptNg9oF8GCIOrBkFj6uXV8s2ZaAzFIr33nqZ1g0">
<h1>About Jessie Singh</h1>
<p>I'm a student, reader, and a runner</p>
</div>
<script src="script.js">
</script>
<!-- ^ where we link our JS file to our webpage (we don't need to worry about this for now!) -->
</body>
</html>