-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (59 loc) · 2.8 KB
/
index.html
File metadata and controls
65 lines (59 loc) · 2.8 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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<title>My profile page</title>
<link rel="stylesheet" href="style.css">
<style>
/* CSS Code */
</style>
</head>
<body>
<!-- HTML Code -->
<nav class="navbar navbar-light bg-light">
<div class="container">
<span class="navbar-brand mb-0 h1">Choi Min Sung's Profile</span>
</div>
</nav>
<div class="center">
<h1 class="bar">Personal Information</h1>
<ol>
<li class="text-primary">Name : Choi Min Sung</li>
<li>e-mail : cms1575@gmail.com</li>
<li>GitHub-account : <a href="https://github.com/cms1575">cms1575 <span class="badge bg-secondary">New</span></a></li>
<li>Interested in : Hamburger</li>
</ol>
</div>
<div class="center">
<h4 class="bar"><strong>I love <span id="item">hamburger</span></strong></h4>
<img src="hamburger.jpg" width="300" height="400" class="rounded-circle"> <a class="btn btn-primary" href="https://m.blog.naver.com/PostView.nhn?blogId=saeragem&logNo=220815188948&proxyReferer=https:%2F%2Fwww.google.com%2F" role="button">Recipe</a>
<table class="shadow p-3 mb-5 bg-body rounded">
<tr>
<th><strong>Kind of Hamburgers</strong></th>
<th><strong>|Calories</strong></th>
</tr>
<tr>
<th><em>Cheese Burger</em></th>
<th>|<em>400 Kcal</em></th>
</tr>
<tr>
<th><em>Big-Mac</em></th>
<th>|<em>600 Kcal</em></th>
</tr>
</table>
<p><span class="border border-primary">Want to know more? visit</span> <a href="https://www.mcdonalds.co.kr/kor/main.do">Mcdonalds page</a> or
<a href="https://ko.wikipedia.org/wiki/%ED%96%84%EB%B2%84%EA%B1%B0">Wikipedia page</a>!</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"></script>
<script>
/* JS Code */
</script>
</body>
</html>