-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (94 loc) · 2.84 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
106
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TF3WKZS5Q4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-TF3WKZS5Q4');
</script>
<meta charset="utf-8">
<title> Suchit Reddi's website </title>
<link rel="stylesheet" type="text/css" href="/style.css">
<meta name="viewport" content="width=device-width, initial scale=1">
<meta name="description" content="A website made by Suchit Reddi to host stuff like
Research, Accomplishments, Projects, Resume, Tips, Notes, Series and Movies etc.">
<meta name="author" content="Suchit Reddi">
</head>
<style>
html {
background-image: url('Misc/index/index.jpg');
background-size: contain;
}
.box {
opacity: 0.8;
}
@media (max-width: 767px) {
.box {
opacity: 0.8;
}
}
</style>
<body>
<div class="heading">
<h1>Suchit Reddi's Website</h1>
</div>
<div class="container">
<div class="box">
<a href="Work">
<img src="./Misc/index/work.jpg" alt="Work image" />
<center><button>Projects</button></center>
</a>
</div>
<div class="box">
<a href="Notes">
<img src="./Misc/index/notes.jpeg" alt="Notes image">
<center><button>Notes</button></center>
</a>
</div>
<div class="box">
<a href="event">
<img src="./Misc/index/event.jpg" alt="Security Event Rant">
<center><button>Events</button></center>
</a>
</div>
<div class="box">
<a href="Honors/">
<img src="./Misc/honors/honors.jpg" alt="Honors image">
<center><button>Honors, CTFs, and Certs</button></center>
</a>
</div>
<div class="box">
<a href="resume.html">
<img src="./Misc/index/resume.jpg" alt="Resume image">
<center><button>Resume</button></center>
</a>
</div>
<div class="box">
<a href="entertainment">
<img src="./Misc/index/cinema.jpg" alt="Cinema image">
<center><button>Movies and Music</button></center>
</a>
</div>
<div class="box">
<a href="about.html">
<img src="./Misc/index/about.png" alt="About image">
<center><button>About Me</button></center>
</a>
</div>
</div>
</body>
<footer>
<div class="footer-heading">
<h3>Contact:</h3>
<a href="mailto:rs521@snu.edu.in" target="_blank"
rel="noopener noreferrer nofollow"><button>Mail</button></a> |
<a href="https://github.com/SuchitReddi" target="_blank"
rel="noopener noreferrer nofollow"><button>GitHub</button></a> |
<a href="https://www.linkedin.com/in/suchitreddi/" target="_blank"
rel="noopener noreferrer nofollow"><button>LinkedIn</button></a>
</div>
</footer>
</html>