-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (51 loc) · 2.31 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
<head>
<link rel="stylesheet" href="main.css">
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
</head>
<nav id="navbar" class="nav">
<ul>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Social</a></li>
</ul>
</nav>
<section id="welcome-section"
class = "welcome-section">
<h1>Hi! I am Divyanshu</h1>
<p>I'm a student at Clemson University majoring in Computer Science</p>
</section>
<section id="projects" class="project-section">
<h2 class="projects-section-header">My Web Design Projects</h2>
<div class="projects-grid">
<a href="demo-survey-form/survey_form.html"><img src="https://i.ibb.co/gDHC4Hq/Screen-Shot-2021-03-15-at-11-34-33-AM.png" class="project project-tile" alt="Screen-Shot-2021-03-15-at-11-34-33-AM" border="0"></a>
<a href="Landing_page/landing_page.html"><img src="https://i.ibb.co/H4HWw02/Screen-Shot-2021-03-15-at-11-35-25-AM.png" class="project project-tile" alt="Screen-Shot-2021-03-15-at-11-35-25-AM" border="0">
</a>
<a href="tribute_page/carl_sagan_tribute.html"><img src="https://i.ibb.co/c386hLm/Screen-Shot-2021-03-15-at-11-45-45-AM.png" class="project project-tile" alt="Tribute Page" border="0"></a>
<a href="documentation page/documentation_page.html"><img src="https://i.ibb.co/Gtccr6F/Screen-Shot-2021-03-15-at-11-46-41-AM.png" class="project project-tile" alt="C# documentation page" border="0">
</a>
</div>
</section>
<section id="contact" class="contact-section">
<div>
</div>
<h2>You can find me on</h2>
<div class="contact-links">
<a href="https://github.com/divpatel10"target="_blank"
class="btn contact-details" id="profile-link"
><i class="fab fa-github"></i> GitHub</a
>
<a href="https://www.linkedin.com/in/divvpatel/"target="_blank"
class="btn contact-details"
><i class="fab fa-linkedin"></i> LinkedIn</a
>
<a href="mailto:[email protected]"target="_blank"
class="btn contact-details"
><i class="fas fa-at"></i> Email</a
>
</div>
</section>