-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
68 lines (68 loc) · 3.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Harsh's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<!--title bar logo-->
<link rel="icon" type="image/gif/png" href="img/logo.png">
</head>
<body>
<header class="header">
<!--Logo Container-->
<div class="logo">
<img src="img/logo.PNG" alt="harsh-logo" class="logo-img responsive-img">
</div>
<!--Header Text Container-->
<div class="header-text hdr-text">
<h1 class="header-name">HARSH SAHU</h1>
<p class="header-info">FULL STACK DEVELOPER</p>
<div class="social-buttons">
<!-- Social media Buttons without Bootstrap-->
<div class="add-shadow">
<a href="http://www.twitter.com/harshsahu97" target="_blank"><img src="img/twih.png" alt="twitterlogo" class="twi sns"></a>
</div>
<div class="add-shadow">
<a href="https://www.linkedin.com/in/harshsahu97/" target="_blank"><img src="img/linh.png" alt="linkedin logo" class="lin sns"></a>
</div>
<div class="add-shadow">
<a href="https://github.com/codehawkdevs" target="_blank"><img src="img/gith.png" alt="github logo" class="git sns"></a>
</div>
</div>
</div>
</header>
<hr class="hr">
<main>
<img src="img/hero.jpg" alt="" class="hero-img responsive-img"> <!--The hero image container-->
<section class="fwork responsive-img">
<h2 class="fwork-grid-header hdr-text">Featured Work</h2>
<!--Featured work Grid-->
<div class="fwork-grid">
<div class="grid-elements add-shadow">
<img src="img/work1.jpg" alt="work image 1" class="fwork-img responsive-img">
<h5 class="fwork-header hdr-text">Movie Trailer Website</h5>
<p class="fwork-link p-text"><a href="https://github.com/codehawkdevs/udacity-fsdn-movie-trailer-website" target="_blank"><img src="img/vog.png" alt="git button" class="git-button"></a></p>
</div>
<div class="grid-elements add-shadow">
<img src="img/work2.jpg" alt="work image 2" class="fwork-img responsive-img">
<h5 class="fwork-header hdr-text">U.S. BikeShare Analysis</h5>
<p class="fwork-link p-text"><a href="https://github.com/codehawkdevs/udacity-USbikeShareAnalysis" target="_blank"><img src="img/vog.png" alt="git button" class="git-button"></a></p>
</div>
<div class="grid-elements add-shadow">
<img src="img/work3.jpg" alt="work image 3" class="fwork-img responsive-img">
<h5 class="fwork-header hdr-text">Tic Tac Toe</h5>
<p class="fwork-link p-text"><a href="https://github.com/codehawkdevs/udacity-TicTacToe" target="_blank"><img src="img/vog.png" alt="git button" class="git-button"></a></p>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-text">
© 2018 Harsh Sahu
</div>
</footer>
</main>
</body>
</html>