-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (64 loc) · 2.33 KB
/
Copy pathindex.html
File metadata and controls
65 lines (64 loc) · 2.33 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Add Favicon -->
<link rel="shortcut icon" href="favicon/favicon.ico" type="image/x-icon">
<!-- Add CSS style -->
<link rel="stylesheet" href="css/styles.css">
<title>Udcity FEND - Portfolio</title>
</head>
<body>
<div class="container">
<!-- Header Section -->
<header class="header">
<img id="logo" src="img/ruhan.jpg" alt="ruhan">
<div class="header-text">
<h1 class="header-title">Ruhan Khandaker</h1>
<p class="header-details">FEND NINJA</p>
</div>
</header>
<!-- Hero Image Section -->
<div class="hero">
<figure class="hero-image">
<img src="img/hero-image.jpeg" alt="Hero image"
srcset="img/hero-image.jpeg 1080w,
img/hero-image640.jpeg 640w"
sizes="100vw"/>
</figure>
</div>
<main>
<!-- Main Section -->
<section id="showcase">
<h2 class="showcase-header">Featured Work</h2>
<!-- Featured Work Section -->
<div class="featured-work">
<article class="project-article">
<img src="img/appify.jpeg" alt="appify" />
<h4>APPIFY</h4>
<a href="#">http://github.com/appify/</a>
</article>
<article class="project-article">
<img src="img/bokeh.jpeg" alt="bokeh" />
<h4>BOKEH</h4>
<a href="#">http://github.com/bokeh/</a>
</article>
<article class="project-article">
<img src="img/sunflower.jpeg" alt="sunflower" />
<h4>SUNFLOWER</h4>
<a href="#">http://github.com/sunflower/</a>
</article>
</div>
</section>
</main>
<!-- Footer Section -->
<footer>
<p class="footer-text">
<sup>©</sup>2018 Ruhan Khandaker
</p>
</footer>
</div>
</body>
</html>