-
Notifications
You must be signed in to change notification settings - Fork 0
/
certificate.html
121 lines (118 loc) · 4.64 KB
/
certificate.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
<!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 rel="stylesheet" href="./fontawesome-free-5.7.2-web 2/css/all.css">
<link rel="stylesheet" href="./style.css">
<title>Certificate</title>
</head>
<body>
<!-- nav-button -->
<span class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</span>
<!-- nav-bar -->
<nav class="navbar" id="navbar">
<div class="navbar-header">
<span class="nav-close" id="nav-close">
<i class="fas fa-times"></i>
</span>
</div>
<ul class="nav-items">
<li><a href="index.html" class="nav-link">home</a></li>
<li><a href="skills.html" class="nav-link">Skills</a></li>
<li><a href="about.html" class="nav-link">About</a></li>
<li><a href="certificate.html" class="nav-link">Certificate</a></li>
</ul>
</nav>
<!-- header -->
<header class="header">
<div class="banner">
<h3 class="banner-subtitle">Portfolio</h3>
<h1 class="banner-title">Shivam Gupta</h1>
<a href="skills.html" class="banner-btn">Explore</a>
</div>
</header>
<!-- end-header -->
<!-- content divider -->
<div class="content-divider"></div>
<!-- product -->
<section class="products ">
<div class="section-center clearfix ">
<!-- product info -->
<article class="products-info ">
<!-- section title -->
<div>
<h3 class="section-subtitle">check out</h3>
<h2 class="section-title text-white">My Certificate</h2>
</div>
<!--end section title -->
<p class="product-text ">
I have done various programming courses to increase my programming skills and I'm sharing few of
them
</p>
<a href="products.html" class="main-btn">Know More</a>
</article>
<!-- product inventory -->
<article class="products-inventory clearfix">
<!-- single product -->
<article class="product">
<img src="./img/1.png" alt="Certificate" class="product-img" />
<h3 class="product-title">Java Programming</h3>
<h3 class="product-price">Duke University</h3>
</article>
<!-- end single product -->
<!-- single product -->
<article class="product">
<img src="./img/2.png" alt="Certificate" class="product-img" />
<h3 class="product-title">Programming with Python</h3>
<h3 class="product-price">Michigan University</h3>
</article>
<!-- end single product -->
<!-- single product -->
<article class="product">
<img src="./img/3.png" alt="Certificate" class="product-img" />
<h3 class="product-title">Programming with HTML,CSS and JAVASCRIPT</h3>
<h3 class="product-price">Duke University</h3>
</article>
<!-- end single product -->
</article>
</div>
</section>
<!-- end of product -->
<!-- end content divider -->
<!-- end of contact -->
<footer class="footer">
<div class="social-center">
<div class="social-icons">
<!-- social-icon -->
<a href="https://github.com/shivam-0510" target="_blank" class="social-icon">
<i class="fab fa-github"></i>
</a>
<!--end of social-icon -->
<!-- social-icon -->
<a href="https://www.instagram.com/_shivam_05._/" target="_blank" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
<!--end of social-icon -->
<!-- social-icon -->
<a href="https://www.hackerrank.com/shivamg_05" target="_blank" class="social-icon">
<i class="fab fa-hackerrank"></i>
</a>
<!--end of social-icon -->
<!-- social-icon -->
<a href="https://www.linkedin.com/in/shivam-gupta-3628641bb" target="_blank" class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
<!--end of social-icon -->
</div>
<p class="footer-text">
©<span class="text-primary"></span>Shivam Gupta
</p>
</div>
</footer>
<script src="./app.js"></script>
</body>
</html>