-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (105 loc) · 4.12 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!-- This is my home page -->
<!DOCTYPE html>
<html>
<!-- Main head -->
<head>
<!-- Meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Arsharaj Chauhan">
<meta name="description" content="Still Learning">
<meta name="keywords" content="Personal Website, Arsharaj Chauhan">
<!-- Title of the home page -->
<title>Arsharaj Chauhan | Home</title>
<!-- Linking the stylesheet -->
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<!-- Main body -->
<body text="#f9f9f9">
<!-- Header -->
<header>
<!-- Container class -->
<div class="container">
<div id="arsharajchauhan">
<h1><span class="shade">Arsharaj</span> Chauhan</h1>
</div>
<!-- Navigation bar -->
<nav>
<ul>
<li class="current"><a href=".">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Photos</a></li>
<li><a href="#">Music</a></li>
<li><a href="#">Videos</a></li>
<li><a href="#">Books</a></li>
<li><a href="#">Softwares</a></li>
</ul>
</nav>
</div>
</header>
<!-- Showcase section -->
<section id="showcase">
<div class="container">
<h2><span class="shade">Hey!</span> Welcome to my <span class="shade">World</span></h2>
<p>
This is my personal website but if you find something relevant then you are free to have it.<br>
Enjoy.
</p>
</div>
</section>
<!-- Photos showcase -->
<section id="photos_showcase">
<div class="container">
<h2><span class="shade">Image Gallery</span></h2>
<div class="row">
<div class="column">
<img src="./image/photo_01.jpg" alt="Lamp" width="18%">
<img src="./image/photo_02.jpg" alt="Fire" width="18%">
<img src="./image/photo_03.jpg" alt="Sunset" width="18%">
<img src="./image/photos_02.jpg" alt="Mountain" width="18%">
<img src="./image/image1.jpeg" alt="Sunset" width="18%">
<img src="./image/img1.jpg" alt="Waterfall" width="18%">
<img src="./image/img2.jpeg" alt="Landscape" width="18%">
<img src="./image/img2.jpg" alt="Green" width="28%">
<img src="./image/img3.jpeg" alt="Mountain" width="18%">
<img src="./image/img3.jpg" alt="Cliff" width="18%">
<img src="./image/img4.jpeg" alt="Arc" width="18%">
<img src="./image/img4.jpg" alt="Glass" width="18%">
</div>
</div>
<br>
<br>
</div>
</section>
<!-- Music showcase -->
<section id="music_showcase">
<div class="container">
<div class="music">
<h2>Music Favourites</h2>
<br>
</div>
<div class="artist">
<a href="https://marshmellomusic.com/" target="_blank"><img src="./image/marshmello.jpg" alt="Marshmello" width="100%" height="50%" abbr="Marshmello"></a>
</div>
<div class="artist">
<a href="http://alanwalker.no/" target="_blank"><img src="./image/alan_walker.jpg" alt="Alan Walker" width="100%" height="50%" abbr="Alan Walker"></a>
</div>
<div class="artist">
<a href="https://www.youtube.com/channel/UCv0tIDoaBZCTXQvVO4zosng" target="_blank"><img src="./image//illinium.jpg" alt="Illinium" width="100%" height="50%" abbr="Illinium"></a>
<br>
<br>
<br>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>
<span class="shade">Arsharaj Chauhan</span><br>
:-) Keep on learning
</p>
</div>
</footer>
</body>
</html>