-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.html
145 lines (116 loc) · 4.97 KB
/
website.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
</head>
<body>
<div class="site-wrap">
<header class="site-navbar" role="banner">
<div class="container-fluid">
<div class="row">
<div class="col1">
<h1 class="profile-name">
<a href="website.html" class="text-white">DuelistRaj</a>
</h1>
</div>
<div class="col2">
<nav class="site-navigation position-relative" role="navigation">
<ul class="site-menu">
<li class="active">
<a href="website.html">Home</a>
</li>
<li class="has-children">
<a href="single.html">Gallery</a>
<ul class="dropdown">
<li>
<a href="#">Apex Legends</a>
</li>
<li>
<a href="#">Minecraft</a>
</li>
<li>
<a href="#">Fortnite</a>
</li>
</ul>
</li>
<li>
<a href="services.html">Services</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="container-fluid">
<div class="row">
<div class="grid">
<div class="image-wrap">
<div class="image-info">
<h2 class="text-image-overlay">Apex Legends</h2>
<a href="single.html" class="btn-outline-white">More Renders</a>
</div>
<img src="Images/DR - Minecraft - GOAT.jpg" alt="Image" class="img-fluid">
</div>
</div>
<div class="grid">
<div class="image-wrap">
<div class="image-info">
<h2 class="text-image-overlay">Minecraft</h2>
<a href="single.html" class="btn-outline-white">More Renders</a>
</div>
<img src="Images/DR - Minecraft - GOAT.jpg" alt="Image" class="img-fluid">
</div>
</div>
<div class="grid">
<div class="image-wrap">
<div class="image-info">
<h2 class="text-image-overlay">Fortnite</h2>
<a href="single.html" class="btn-outline-white">More Renders</a>
</div>
<img src="Images/DR - Minecraft - GOAT.jpg" alt="Image" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
<img src="Images/workplace.jpg" alt="Workplace" usemap="#workmap">
<map name="workmap">
<area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
</map>
<audio controls>
<source src="BadFantasy.mp3" type="audio/mp3">
</audio>
<video width="320" height="240" controls>
<source src="FAMILY1V3.mp4" type="video/mp4">
</video>
<p>Click the button to get your coordinates.</p>
<button onclick="getLocation()">Try It</button>
<p id="demo"></p>
<script>
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
</script>
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #000000;">
Your browser does not support the HTML canvas tag.
</canvas>
</body>
</html>