-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (42 loc) · 1.61 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Welcome Page!</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="cover.css">
</head>
<body>
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">Personal Info</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="aboutme.html">About Me</a>
<a class="nav-link" href="education.html">Education</a>
<a class="nav-link" href="skill.html">Skill</a>
<!-- <a class="nav-link active" href="contactme.html">Contact Me</a> -->
</nav>
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">Welcome to Home Page!</h1>
<p class="lead">Click navigation links from top for more details .......</p>
<!--
<p class="lead">
<a href="#" class="btn btn-lg btn-secondary">Learn more</a>
</p>
-->
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Pages for <a href="#">PersonalInfo</a>, by <a href="#">@ZMT</a>.</p>
</div>
</footer>
</div>
</body>
</html>