-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (99 loc) · 3.98 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
<!DOCTYPE html>
<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">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./public/style/style.css">
<title>Sagar Sharma</title>
</head>
<body class="body">
<!-- front page -->
<video autoplay muted loop id="vid">
<source src="./public/video/bg.mp4" type="video/mp4">
</video>
<div class="front_container">
<div class="intro">
<h1>Hello, I'm <span class="orange"></span></h1>
<h1 class="developer"></h1>
<button class="github"></button>
</div>
<div class="arrow bounce">
<a class="fas fa-angle-double-down fa-2x" href="#projects"></a>
</div>
<nav>
<a href="#">Home</a>
<a href="#projects">Projects</a>
</nav>
</div>
<a name="projects"></a>
<div class="projects">
<h1>My Recent Projects</h1>
<p class="click_info"></p>
<div class="box_container">
<div class="box">
<img src="./public/img/movies.png" alt="project1" title="0">
<div class="detail">
<h1 class="title"></h1>
<p class="about_proj"></p>
<br>
<button><a href="" class="Proj_link"></a></button>
</div>
</div>
<div class="box">
<img src="./public/img/tic-tac-toe.png" alt="project2" title="1">
<div class="detail">
<h1 class="title"></h1>
<p class="about_proj"></p>
<br>
<button><a href="" class="Proj_link"></a></button>
</div>
</div>
<div class="box">
<img src="./public/img/astro.png" alt="project3" title="2">
<div class="detail">
<h1 class="title"></h1>
<p class="about_proj"></p>
<br>
<button><a href="" class="Proj_link"></a></button>
</div>
</div>
<div class="box">
<img src="./public/img/key.png" alt="project4" title="3">
<div class="detail">
<h1 class="title"></h1>
<p class="about_proj"></p>
<br>
<button><a href="" class="Proj_link"></a></button>
</div>
</div>
<div class="box">
<img src="./public/img/num.png" alt="project5" title="4">
<div class="detail">
<h1 class="title"></h1>
<p class="about_proj"></p>
<br>
<button><a href="" class="Proj_link"></a></button>
</div>
</div>
<div class="box">
<img src="./public/img/age_calc.png" alt="project6" title="5">
<div class="detail">
<h1 class="title"></h1>
<p class="about_proj"></p>
<br>
<button><a href="" class="Proj_link"></a></button>
</div>
</div>
<p id="footer_proj">Want to see more? Visit my <a href="https://github.com/Sagar-Sharma-7" target="_blank">Github</a></p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="./public/js/main.js"></script>
<script src="./public/js/text.js"></script>
<script src="./public/js/scroll.js"></script>
<script src="./public/js/click_effect.js"></script>
</body>
</html>