Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added FrontEndWebsite/Front end website/img/bg1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions FrontEndWebsite/Front end website/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
body{
background-image: url("img/bg1.jpg");
background-repeat: no-repeat;
background-position: center;
height:100%;
background-size: cover;
}

body, html {
height: 100%;
margin: 0;
}


@import: url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
body {
font-family: 'Roboto Condensed', sans-serif;
height: 100%;
background-color: black;
color: #fff;
text-transform: uppercase;

}
.container {
text-align: center;
}
h1 {
margin-left: 30px;
margin-bottom: 50px;
}


.card-body{
box-shadow: 5px 5px 7px 8px;
}

/*This is the styling that make cards responsive.*/
.card{
margin:20px 10px;
}

*{
margin:0px;
padding: 0px;
font-family: 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.footer{
background-color:darkorchid;

margin-top: 30px;
text-align: center;
overflow: hidden;
margin-bottom: 0px;

left: 0;
bottom: 0;
width: 100%;

color: white;


}
137 changes: 137 additions & 0 deletions FrontEndWebsite/Front end website/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
</head>



<body>

<div class="container" style="margin-left:32rem; ">
<nav class="navbar navbar-expand-lg navbar-primary text-white">
<div class="collapse navbar-collapse bg" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Topics</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Me</a>
</li>

</ul>
</div>
</nav>
</div>
<div class="container my-4">
<h1>ABOUT ME</h1>
</div>
<div class="jumbotron text-dark my-0 mx-auto" style="width:80%">
<h1 class="display-4">Hello, Reader!</h1>
<p class="lead">I'm <i>Parishi</i> currently pursuing Chemistry at IIT Bombay.</p>
<hr class="my-4">
<p class="my-0">I like to play sports very much especially Badmintion, but admist this pandemic I developed the
habbit of reading books which helped
me a lot to gain insights about the world and myself. I also like to try out and learn various new things.
</p>

</div>

<hr>

<div class="container">
<h1>TOPICS</h1>
<div class="row ">
<div class="col-md-6">
<div class="card text-center">

<div class="card-body">
<h3 class="card-title text-dark">Nanomaterials SOS project</h3>
<p class="card-text text-dark">I did a Sumer Of Science on the topic <b>Nanomaterials</b>
because I
really liked the concept of
just by subtle change in the property of a material you can create entirely a brand new
material
with completely different properties
with a wide range of applications.
But in the process of exploring this field I was really fascinated by the applications of it
from very small to very large things
happening around the globe. It was truly an enriching experience for me to do this project.
</p>


</div>
</div>
</div>

<div class="col-md-6">

<div class="card text-center ">
<div class="card-body">
<h3 class="card-title text-dark">LS Web Development</h3>
<p class="card-text text-dark ">Initially I took this project as to explore this field, but
eventually it had lead to my actual
area of interest. This course is very efficient as it covers every aspects of each content and
also is designed for anyone whether beginner or someone else.
This course actually takes you to the path from novoice to actual applications which are used in
industry currently.
I'm really glad that I took up this course and I plan to continue to explore in this area in my
future. </p>
</div>
</div>
</div>
</div>
</div>


<div class="container my-4">
<h1 class="my-4">Contact Form</h1>


<form action="https://formspree.io/xqkygvqn" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your Name" name="name">
</div>


<div class="form-group">
<label for="msg">Your Message</label>
<textarea class="form-control" id="msg" rows="3" placeholder="Message" name="message"></textarea>
</div>


<input type="submit" value="Send" class="btn btn-outline-light btn-lg">

</form>
</div>
<!--footer-->
<div class="footer">
Web Dev Project &copy; 2020
</div>


</body>

</html>
2 changes: 2 additions & 0 deletions Imakshat47_binary2DecimalBasic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
using namespace std;

int bin2dec(int num)


{
int dec = 0, base = 1;
while (num != 0)
Expand Down
63 changes: 1 addition & 62 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,62 +1 @@
# Contributed-code-in-Hackoctober

## Open Repository For Students to Contribute code in Hackoctober in different Languages...

## This Repository is meant for everyone to create code and learn to contribute to open source

People can star, fork or clone this repo and can add any type of data structures or algorithm codes and can raise PR during hacktoberfest.

Use this repo for contributing in open source.
Start solving issues and raise the pull requests and even you can create your own issues.
If you want to contribute to a project, the simplest way is to:

Find a ISSUE you want to contribute to ->> Fork it

Clone it to your local system

Make a new branch

Make your changes

Push it back to your repo

Click the Compare & pull request button

Click Create pull request to open a new pull request

If the reviewers ask for changes, repeat steps 5 and 6 to add more commits to your pull request.

The implementations/codes which are added/merged in CPP-:

## That's all if Everything will be fine, Your PR will be Merged!!

Happy coding!!!

### Contributors

<!-- Don't Change under this line-->
<!-- Contributors:List-->
<table>
<tr>
<td align="center"><a href="https://github.com/zahinekbal"><img src="img/zahinekbal.jpg" width="100px;" alt="Zahin Ekbal"/><br /><sub><b>Zahin Ekbal</b></br> Maintainer</sub></a></td>
<td align="center"><a href="https://github.com/ahmedashfaq027"><img src="img/ashfaqahmed.jpg" width="100px;" alt="Ashfaq Ahmed"/><br /><sub><b>Ashfaq Ahmed</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/AswinCG2002"><img src="img/AswinCG2002.jpg" width="100px;" alt="Aswin CG"/><br /><sub><b>Aswin CG</b></br>Contributor</sub></a></td>
<td align="center"><a href="https://github.com/Nishant763"><img src="img/NishantBhatia.jpeg" width="100px;" alt="Nishant Bhatia"/><br /><sub><b>Nishant Bhatia</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/cuncis"><img src="img/Cuncis.jpeg" width="100px;" alt="Cuncis"/><br /><sub><b>Cuncis</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/ishika-a"><img src="img/Ishika.jpg" width="100px;" alt="Ishika"/><br /><sub><b>Ishika</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/Vishi13"><img src="img/Vishi13.jpg" width="100px;" alt="Vidushi Jain"/><br /><sub><b>Vidushi Jain</b></br> Contributor</sub></a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/prototype-raj"><img src="img/rajarshi.jpg" width="100px;" height="100px;" alt="Rajarshi Rakshit"/><br /><sub><b>Rajarshi Rakshit</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/Jay206-Programmer"><img src="img/Jay_Shukla.jpg" width="100px;" height="100px;" alt="Jay Shukla"/><br /><sub><b>Jay Shukla</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/Kunal888"><img src="img/Kunal888.jpg" width="100px;" height="100px;" alt="Kunal"/><br /><sub><b>Kunal</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/anjali1903"><img src="img/Anjali.jpeg" width="100 px" height="100px;" alt="Anjali"/><br /><sub><b>Anjali Jha</b></br> Contributor</sub></a></td>
<td align="center"><a href="https://github.com/saipranay47"><img src="img/sai_pranay.jpg" width="100px;" alt="sai pranay"/><br /><sub><b>Sai Pranay</b></br> contributer </sub></a></td>
<td align="center"><a href="https://github.com/Preetam2114"><img src="https://github.com/Preetam2114.png" width="100px;" alt="Preetam Rane"/><br /><sub><b>Preetam Rane</b></br> contributer </sub></a></td>
<td align="center"><a href="https://github.com/ramalik00"><img src="img/rahul.jpeg" width="100px;" alt="Rahul Malik"/><br /><sub><b>Rahul Malik</b></br> contributer </sub></a></td>
<td align="center"><a href="https://github.com/Mrcedric"><img src="img/cedric-img-portrait-2.png" width="100px;" alt="Cédric"/><br /><sub><b>Cédric</b></br> contributer </sub></a></td>
</tr>

</table>

#### Don't forget to Give a Star(⭐) on Repo.
https://p489.github.io/19B030018_WEB_DEV/