Skip to content

Commit f20dc4a

Browse files
committed
Upload static web page
0 parents  commit f20dc4a

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

static-webpage/assets/profile.jpg

110 KB
Loading

static-webpage/assets/style.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
body {
2+
text-align: center;
3+
}
4+
5+
.content {
6+
margin: 0 auto;
7+
max-width: 50vh;
8+
}

static-webpage/index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link rel="stylesheet" href="/assets/style.css">
8+
<title>Profile</title>
9+
</head>
10+
<body>
11+
<h1>Meow Profile</h1>
12+
<hr />
13+
<div class="content">
14+
<img src="/assets/profile.jpg" alt="Profile image" width="360" height="" />
15+
<p>
16+
<b>Name: </b> Meow <br />
17+
<b>Student ID: </b> 61070XXX <br />
18+
</p>
19+
<h2>Contact Info</h2>
20+
<p>
21+
<b>GitHub: </b> <a href="https://www.github.com/XXXX" target="_blank">https://www.github.com/XXXX</a> <br />
22+
</p>
23+
</div>
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)