-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (101 loc) · 3.82 KB
/
index.html
File metadata and controls
108 lines (101 loc) · 3.82 KB
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<title>thecodingdev</title>
</head>
<body>
<div class="container-fluid">
<div class="topnav container-fluid">
<a href="#" style="font-style: italic">thecodingdev</a>
<a href="#">Home</a>
<a href="#">About me</a>
<a href="#">Contact me</a>
</div>
<div class="intro fade-container">
<img src="./images/coding.jpg" alt="intro images" class="img-fluid " />
</div>
<div class="card-deck">
<!--first card is for the automation -->
<div class="card" style="width: 300px;">
<img
src="./images/automation.jpg"
alt=""
srcset=""
style="width: 300px;"
/>
<div class="card-body">
<h4 class="card-title">Automate Repo Creation</h4>
<p class="card-text">It contains bash and python script which will automate the Repo Creation and intial commit </p>
<a href="https://github.com/sandeepnegi1996/GitRepoAutomation.git" class="btn btn-primary">Source code</a>
<a href="#" class="btn btn-primary">Live Preview</a>
</div>
</div>
<!--second card is for the java calculator -->
<div class="card" style="width: 300px;">
<img
src="./images/calculator.jpg"
alt=""
srcset=""
style="width: 300px;"
/>
<div class="card-body">
<h4 class="card-title">Basic-Calculator</h4>
<p class="card-text">Simple calculator using java </p>
<a href="https://github.com/sandeepnegi1996/calculator.git" class="btn btn-primary">Source code</a>
<a href="#" class="btn btn-primary">Live Preview</a>
</div>
</div>
<!--Third card is for the BMI calculator -->
<div class="card" style="width: 300px;">
<img
src="./images/bmi.png"
alt=""
srcset=""
style="width: 300px;"
/>
<div class="card-body">
<h4 class="card-title">BMI Calculator</h4>
<p class="card-text">Just put your height and weight and get your BMI</p>
<a href="https://github.com/sandeepnegi1996/BMI_App.git" class="btn btn-primary">Source code</a>
<a href="https://sandeepnegi1996.github.io/BMI_App/" class="btn btn-primary">Live Preview</a>
</div>
</div>
<!-- Interview Prep Guide -->
<div class="card" style="width: 300px;">
<img
src="./images/interview-prep.jpg"
alt=""
srcset=""
style="width: 300px;"
/>
<div class="card-body">
<h4 class="card-title">Computer-Science Prepration Guide</h4>
<p class="card-text">This guide contains all the notes that I used to Prepare for an interview</p>
<button class="btn btn-primary">source code</button>
<button class="btn btn-primary">Live Preview</button>
</div>
</div>
</div>
<br /><br />
<div class="footer">
<a href="http://www.github.com/sandeepnegi1996">github</a>
<a href="http://www.linkedin.com/sandeepnegi1996">linkedin</a>
<div class="tag-line">
<a href="">Learning,Creating and Repeating</a>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>