-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.html
75 lines (69 loc) · 3.42 KB
/
website.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
<!DOCTYPE html>
<html>
<title>Portfolio Website | Aryan Gandhi</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="keywords" content="Computer Engineering Student, University of British Columbia, Software Developer">
<meta name="description" content="Aryan Gandhi is a .....">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playfair+Display:900|Raleway:300">
<!--Bootstrap.css-->
<link type="text/css" rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--Custom Styling-->
<link type="text/css" rel="stylesheet" href="assets/css/website.css">
<link type="text/css" rel="stylesheet" href="assets/css/navbar.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</html>
<body id="landing-page">
<div class="topnav" id="myTopnav">
<a class="active">Aryan Gandhi / CPEN Student</a>
<div class="topnav-right">
<a href="website.html">About Me</a>
<a href="resume.html">Resume</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</div>
<a href="javascript:void(1);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="container">
<div class="row">
<div class="col-xs-6 col-lg-6 col1">
<div class="row">
<img src="profile_img.jpg" alt="profile-img" class="profile-img">
<p style="font-weight: bold; margin-top: 20px; font-size: xx-large; margin-bottom: 0;">Aryan</p>
<p style="font-weight: bold; margin-top: 0px; font-size: xx-large;">Gandhi</p>
<hr class="line" style="height: 3px;"/>
<p style="letter-spacing: 0.15em; margin-top: 25px; font-size: larger;">UBC Computer Engineering Student</p>
</div>
<div class="row social-icons">
<a href="https://www.linkedin.com/in/aryan-gandhi-2b9725197/" class="fa fa-linkedin" style="font-size: 25px;"></a>
<a href="https://github.com/aryang13" class="fa fa-github" style="font-size: 25px;"></a>
<a href="mailto: [email protected]" class="fa fa-envelope-o" style="font-size: 25px;"></a>
<a href="tel:4038051936" class="fa fa-phone" style="font-size: 25px;"></a>
</div>
</div>
<div class="col-xs-6 col-lg-6 col2">
<div class="row name">
<div class="typewriter">
<h1>HELLO</h1>
</div>
</div>
<div class="row">
<p class="uni">Here's who I am & what I do</p>
</div>
<div class="row">
<div class="container">
<a href="resume.html"><button class="button">Resume</button></a>
<a href="projects.html"><button class="button">Projects</button></a>
</div>
</div>
<div class="bio">
<p>ADD BIO</p>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="assets/js/navbar.js"></script>
</body>