-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (106 loc) · 4.04 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
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sandeep kumar</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/b90adf908b.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> -->
<nav id="navbar">
<!-- <img src="./images/logo.png" alt=""> -->
<ul>
<a href="#welcome-section"><li>About</li></a>
<a href="#work"><li>Work</li></a>
<a href="#Contact"><li>Contact</li></a>
</ul>
</nav>
<section id="welcome-section">
<div class="photo" id="photo-with-text">
<h1>Sandeep kumar</h1>
<img src="./images/geek-man-cartoon-vector-19475550-removebg-preview.png" />
<div class="glow-wrap">
<i class="glow"></i>
</div>
</div>
<h5>I am passionate about web designing and flutter app developement</h5>
</section>
<section id="work">
<br><br><br><br><br>
<h6>These are some of my projects</h6>
<br><br><br>
<div id="projects">
<a href="https://github.com/sandy9808/My-college-website" class="project-tile" target="_blank">
<div>
<div class="cardContent">
<div class="cardText">
<h4>My college website</h4>
<hr>
<p><em>A dummy college website made only by <strong>html and css</strong>.</em></p>
</div>
</div>
</div>
</a>
<a href="https://github.com/sandy9808/xylophone-flutter" class="project-tile" target="_blank">
<div >
<div class="cardContent">
<div class="cardText">
<h4>Xylophone</h4>
<hr>
<p><em>A Xylophone built in <strong>flutter</strong> engine using the dart programming language.</em></p>
</div>
</div>
</div>
</a>
<a href="https://github.com/sandy9808/Flutter-Dicee" target="_blank" class="project-tile">
<div>
<div class="cardContent">
<div class="cardText">
<h4>Dicee</h4>
<hr>
<p><em>A app built in <strong>flutter</strong> engine in which we can roll a pair of dice.</em></p>
</div>
</div>
</div>
</a>
<a href="https://github.com/sandy9808/FCC-tribute-page" class="project-tile" target="_blank">
<div >
<div class="cardContent">
<div class="cardText">
<h4>Tribute to bhagat singh</h4>
<hr>
<p><em>A static web page built in <strong>html and css</strong>.</em></p>
</div>
</div>
</div>
</a>
</div>
</section>
<section id="Contact">
<h3>Let's work together...</h3>
<div id="icons">
<a href="https://www.instagram.com/sandy101289/" target="_blank" class="btn contact-details">
<i class="fa fa-instagram" aria-hidden="true">Instagram</i>
</a>
<a href="https://twitter.com/sandytweets3" target="_blank" class="btn contact-details">
<i class="fa fa-twitter" aria-hidden="true">Twitter</i>
</a>
<a href="https://github.com/sandy9808" target="_blank" class="btn contact-details" id="profile-link">
<i class="fa fa-github" aria-hidden="true">Github</i>
</a>
<a href="mailto:[email protected]" target="_blank" class="btn contact-details">
<i class="fa fa-at" aria-hidden="true">Mail me</i>
</a>
</div>
</section>
<footer>
<p>
©2021 Sandeep kumar. All rights reserved.
</p>
</footer>
</body>
</html>