-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
101 lines (76 loc) · 3.4 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Font Awesome CSS-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Dev Icon CSS-->
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="style.css">
<title>Dipesh Makwana - Portfolio</title>
<!-- Favicon Logo-->
<link rel="icon" href="img/favicon-logo.png">
<!-- Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=G-7GMRW318C6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-7GMRW318C6');
</script> -->
</head>
<!-- Navbar -->
<nav class="navbar navbar-custom navbar-expand-md navbar-dark fixed-top">
<a class="navbar-brand" href="#"><img src="img/logo.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive">
<span class = "navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://dmakwana312.github.io/index.html#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://dmakwana312.github.io/index.html#about">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="https://dmakwana312.github.io/index.html#projects">My Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://dmakwana312.github.io/index.html#contact">Contact Me</a>
</li>
</ul>
</div>
</nav>
<body class="project-about">
<div class="project-inner ">
<div class="project container inner-background">
<div class="row justify-content-center">
<div id="project-title" class="col-12-md justify-content-center">
</div>
</div>
<div class="row justify-content-center align-self-center">
<div id="project-video" class="col-md-9 project-video">
</div>
<div id="tools-used" class="col-md-3 tools-used">
<h5>Tools Used</h5>
</div>
<div class="col-md-12 more-info">
<h5>About Project</h5>
<p id="more-info"></p>
</div>
</div>
</div>
</div>
<!-- ajax-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="scripts/js/generateProjectPage.js"></script>
</body>
</html>