Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added express.js #30

Open
wants to merge 35 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0936ae1
Create Vishal.md
vishuuwu Dec 26, 2021
e66a188
Update index.html
vishuuwu Dec 26, 2021
6477c01
Update index.html
vishuuwu Dec 26, 2021
2ea946e
Update index.html
vishuuwu Dec 29, 2021
bd04273
Update style.css
vishuuwu Dec 29, 2021
121ddfb
Update style.css
vishuuwu Dec 29, 2021
0097a1c
Update index.html
vishuuwu Dec 29, 2021
cfd237d
Delete Vishal.md
vishuuwu Dec 29, 2021
70ea844
Update index.html
vishuuwu Dec 29, 2021
20b29e0
Update style.css
vishuuwu Dec 29, 2021
0fd9e95
Update style.css
vishuuwu Dec 29, 2021
3dfb6d7
Delete index.html
vishuuwu Dec 29, 2021
81af866
Add files via upload
vishuuwu Dec 29, 2021
501ff21
Delete style.css
vishuuwu Dec 29, 2021
3420525
Add files via upload
vishuuwu Dec 29, 2021
43664a6
Update index.html
vishuuwu Dec 29, 2021
96a8256
Add files via upload
vishuuwu Dec 29, 2021
35ee92d
Update index.html
vishuuwu Dec 29, 2021
1c253d5
Update index.html
vishuuwu Dec 29, 2021
2204f4b
Delete favicon.ico
vishuuwu Dec 29, 2021
eaa7130
Add files via upload
vishuuwu Dec 29, 2021
3b23b89
Add files via upload
shubhrai2811 Dec 31, 2021
93eb6de
Delete index.html
shubhrai2811 Dec 31, 2021
f66a629
Delete style.css
shubhrai2811 Dec 31, 2021
04a5bc4
Rename indexf.html to index.html
vishuuwu Dec 31, 2021
30544d7
Update style.css
vishuuwu Dec 31, 2021
c685c37
Update style.css
vishuuwu Dec 31, 2021
9b36e94
Update index.html
vishuuwu Jan 1, 2022
8fd3592
Update index.html
vishuuwu May 17, 2022
3c8d062
Update index.html
vishuuwu May 17, 2022
cb1bfcd
Delete logo.png
vishuuwu Apr 14, 2023
2d1a8e2
Add files via upload
vishuuwu Apr 14, 2023
7343a12
Update index.html
vishuuwu Apr 24, 2023
e8098f5
adding express
vishuuwu Sep 4, 2023
5b9a3ae
Merge branch 'patch-1' of github.com:vishuwuu/vishalkashyap09.github.…
vishuuwu Sep 4, 2023
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
10 changes: 10 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const express = require('express')
const app = express()

const port = 8000
app.use(express.static('public'))

app.listen(port)


console.log ("up")
88 changes: 39 additions & 49 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,56 +1,46 @@
<!DOCTYPE html>
<html lang="en">

<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">
<title>Basic Portfolio Website</title>
<link rel="stylesheet" href="style.css">
</head>
<meta charset="UTF-8">
<title>Shubh Rai - Programmer, ML Enthusiast</title>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript"></script>

<body>
<!-- We will be creating many elements in this document with some class (to add some styling later) -->
<!-- home page -->
<div id="home" class="homePage">
<div class="intro"> <!-- creating a master div to have child elements in it -->
<div class="name">Hi, I am &#60;name&#62;</div> <!-- creating a div to enter your name (edit your name here) -->
<p>Frontend developer</p> <!-- paragraph tag -->
<button class="your_button">button</button> <!-- creating a button -->
</div>
<div class="myImage"> <!-- always a good habbit to add master divs -->
<img src="https://miro.medium.com/max/3960/0*HICLyAdNSIyT0ODU.jpg" alt="MyImage"> <!-- adding a image using url -->
</div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./stylef.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>

<!-- about me -->
<div id="aboutme" class="about"> <!-- again a master div -->
<div class="about_heading"> <!-- child div for heading -->
About me
</div>
<!-- adding a paragraph tag to write "about me", edit it and write about you -->
<p class="para">Lorem ipsum dolor sit amet consectetur adipisicing elit. Illum voluptates provident molestias a
animi facilis iusto voluptatum repellat eligendi consequatur distinctio placeat mollitia veritatis
recusandae, ad, quasi commodi enim quos! Quasi aspernatur veniam, blanditiis sint necessitatibus dicta
libero voluptatibus reiciendis asperiores nemo maiores ducimus corrupti magnam error voluptatum ab velit.
</p>
</head>
<body>
<nav class="navbar">
<div class="max-width">
<div class="logo"><a href="#">Portfo<span>lio.</span></a></div>
<u1 class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Connect With Me</a></li>
<li><a href="#">Experience</a></li>
<li><a href="#">Blog</a></li>
</u1>
</div>
</nav>
<!-- partial:index.partial.html -->
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div>
<div id='title'>
<span>
SHUBH RAI
</span>
<br>
<span>
Programmer And ML Enthusiast
</span>
</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script><script src="./script.js"></script>

<!-- contact -->
<div id="contact" class="contact_sec"> <!-- adding a master div again -->
<div class="contact_heading">
Contact Me <!-- adding a chiid div for heading -->
</div>
<div class="contact_info">
<!-- adding more divs for personal details, edit them! -->
<div class="Email">Email : <span class='data'>[email protected]</span></div>
<div class="mobile_no">Mobile no : <span class='data'>+91 XXXXXXXXXX</span></div>
<!-- adding anchor tag to directly redirect user to your profile, add links to your profile in href -->
<div class="linkdin">linkdin :<span class='data'> <a
href="https://www.linkedin.com/company/gdsc-iiit-kalyani/">Linkdin IN</a></span></div>
<div class="github">Github : <span class='data'> <a href="https://github.com/GDSC-IIIT-Kalyani">Github</a></span></div>
<div class="others">Others :<span class='data'> <a href="https://gdsc.bio.link/">BIO</a></span></div>
</div>
</body>

</html>
</html>
Loading