-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
55 lines (48 loc) · 1.91 KB
/
portfolio.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
54
55
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- Note that the below Bootstrap file is a specific version. If you grab the most
current from Bootstrap website, you will see the button grow transition being a lot faster
than in my video. Use whichever style sheet you like best! -->
<!-- Bootstrap CSS from a CDN. This way you don't have to include the bootstrap file yourself -->
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<!-- My own stylesheet -->
<link href="portfolio.css" rel="stylesheet">
</head>
<body>
<div class="nav_div">
<header class="header">
<h4 class="logo">Nischal <span class="logo_surname">Khanal</span></h4>
<nav>
<ul class="nav_links">
<li><a href="#">About me</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact me</a></li>
</ul>
</nav>
</header>
</div>
<div class="body-portfolio">
<div class="body-portfolio-contents-image">
<img class="portfolio_profile" src="portfolio_profile.jpg" alt="nischal_profile">
</div>
<div class="body-portfolio-contents-heading">
<h2>Nischal Khanal!</h2>
</div>
<div class="body-portfolio-contents-para">
<p>Student, Developer & Athelete.</p>
</div>
<div class="body-portfolio-contents-buttons">
<button> Take A Look Ay My Work</button>
<button> CONTACT MYSELF</button>
</div>
</div>
</body>
</html>