-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (69 loc) · 3.61 KB
/
Copy pathindex.html
File metadata and controls
77 lines (69 loc) · 3.61 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
69
70
71
72
73
74
75
76
77
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css">
<nav id ="c" class="navbar navbar-light bg-light">
<div class="container">
<span class="navbar-brand mb-0 h1"><i class="bi bi-card-checklist"></i> My Profile</span>
</div>
</nav>
<link rel = "stylesheet", href = "style.css">
<style>
.container {
width: 640px;
}
</style>
</head>
<body>
<div id = "wrapper">
<h1>My Profile</h1>
<p>
Name : <span class= "set_color">Kang-Seong-Cheol</span><br>
Affiliation : <span class= "set_color">Sungkyunkwan University</span><br>
Email : <span class= "set_color">sc9335@naver.com</span><br>
GitHub : <span class= "set_color">windalike12@gmail.com</span><br>
Interest : <span class= "set_color">HipHop music</span><br>
</p>
<img src = "picture.png" width="300"/>
<h2>Useful Links that I like</h2>
<ul>
<div class="shadow-lg p-3 mb-5 bg-body rounded">
<li><a href = "https://www.google.com"><span class="border border-success">Google</span></a></li>
<li><a href = "https://www.youtube.com"><span class="border border-success">Youtube</span></a></li>
<li><a href = "https://www.naver.com"><span class="border border-success">Naver</span></a></li>
</div>
</ul>
<h2>My schedule</h2>
<table>
<tr><th>Monday</th><th>Tuesday</th><th>Wednesday</th><th>Thursday</th><th>Friday</th></tr>
<tr><td><div class="p-3 mb-2 bg-primary text-white">Class</div></td><td><div class="p-3 mb-2 bg-danger text-white">Part time job</div></td><td><div class="p-3 mb-2 bg-primary text-white">Class</div></td><td><div class="p-3 mb-2 bg-primary text-white">Class</div></td><td><div class="p-3 mb-2 bg-success text-white">Empty</div></td></tr>
</table>
</div>
<div class="d" class="form-check">
<h2>
Please check one of these
</h2>
<input class="form-check-input" type="checkbox" value="" id="flexCheckChecked" checked>
<label class="form-check-label" for="flexCheckChecked">
Like the page
</label>
<br>
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Unlike the page
</label>
</div>
<div class="d" class="input-group">
<h2>I want to be your friend! Please let me know your name!!</h2>
<span class="input-group-text">First and last name</span>
<input type="text" aria-label="First name" class="form-control" placeholder="Enter First name here">
<input type="text" aria-label="Last name" class="form-control" placeholder="Enter Last name here">
</div>
</body>
</html>