-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·91 lines (86 loc) · 2.62 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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">
<title>Mohit Sakhuja | Portfolio</title>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class="wrapper">
<!-- Header -->
<header>
<div id="main-header">
<img src="./img/udacity-logo.svg" alt="Udacity Logo">
<div class="title">
<h1>Mohit Sakhuja</h1>
<h4>Aspiring Full-Stack Developer</h4>
</div>
</div>
</header>
<!-- Sidebar -->
<aside id="sidebar">
<div class="color-box">
<div class="box blue"></div>
<p>#02b3e4</p>
</div>
<div class="color-box">
<div class="box dark-gray"></div>
<p>#2d3c49</p>
</div>
<div class="color-box">
<div class="box light-gray"></div>
<p>#7d97ad</p>
</div>
</aside>
<!-- Main Area -->
<main>
<!-- Showcase Image -->
<section id="showcase">
<picture>
<source media="(min-width: 961px)" srcset="./img/showcase2.jpg">
<img src="./img/showcase.png" alt="Showcase image">
</picture>
</section>
<!-- Featured Work -->
<section id="featured-work">
<h2>Featured Work</h2>
<div class="links">
<article class="project">
<a href="#" target="_blank">
<picture>
<source media="(min-width: 961px)" srcset="./img/appify2.jpg">
<img src="./img/appify.png" alt="A screenshot of an app icon">
</picture>
<h3>Appify</h3>
<p>Lorem ipsum dolor sit amet.</p>
</a>
</article>
<article class="project">
<a href="#" target="_blank">
<picture>
<source media="(min-width: 961px)" srcset="./img/sunflower2.jpg">
<img src="./img/sunflower.png" alt="A sunflower">
</picture>
<h3>Sunflower</h3>
<p>Lorem ipsum dolor sit amet.</p>
</a>
</article>
<article class="project">
<a href="#" target="_blank">
<picture>
<source media="(min-width: 961px)" srcset="./img/bokeh2.jpg">
<img src="./img/bokeh.png" alt="A picture of bokeh effect">
</picture>
<h3>Bokeh</h3>
<p>Lorem ipsum dolor sit amet.</p>
</a>
</article>
</div>
</section>
</main>
<!-- Wrapper ends -->
</div>
</body>
</html>