-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
91 lines (77 loc) · 4.25 KB
/
resume.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "utf-8">
<meta name = "viewport" content = "width=device-width, intial-scale = 1">
<link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Radha Patel</title>
<link rel = "icon" type = "image/png" href = "logo-alone.png">
<link rel = "stylesheet" type = "text/css" href = "resume.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<nav class = "navbar navbar-expand-md">
<a class = "navbar-left" href = "index.html">
<img src = "logo-no-text.png" class = "logo-img" alt = "Radha Patel logo">
<span class = "logo-text"><strong>Radha Patel</strong></span>
</a>
<button class = "navbar-toggler navbar-dark" type = "button" data-toggle = "collapse" data-target = "#main-navigaton">
<span class = "navbar-toggler-icon"></span>
</button>
<div class = "collapse navbar-collapse" id = "main-navigation">
<ul class = "navbar-nav">
<li class = "nav-item">
<a class = "nav-link" href = "index.html">Home</a>
</li>
<li class = "nav-item">
<div class = "dropdown">
<a class = "nav-link" href = "projects.html">
<button class = "dropbtn" href = "projects.html">Projects
<i class = "fa fa-caret-down"></i>
</button>
</a>
<div class = "dropdown-content">
<a class = "nav-link" href = "invaders.html">Alien Invaders</a>
<div class = "nav-item">
<a class = "nav-link" href = "maze_runner.html">Maze Runner</a>
</div>
</div>
</div>
</li>
<li class = "nav-item active">
<a class = "nav-link" href = "resume.html">Resume</a>
<span class = "sr-only">(current)</span>
</li>
<li class = "nav-item">
<div>
<a class = "nav-link" href = "https://wordsforthought22.wordpress.com/" target = "_blank">Blog</a>
</div>
</li>
<li class = "nav-item">
<a class = "nav-link" href = "contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<header class = "page-header header container-fluid">
</header>
<h1>This page is a work in progress. Click <a href = "index.html">here</a> to return to the homepage.</h1>
<div class = "linkedin">
<a href = "https://www.linkedin.com/in/radha-patel-881323179" target = "_blank"><i class = "fab fa-linkedin"></i></a>
</div>
<div class = "instagram">
<a href = "https://www.instagram.com/radhadpatel22/?hl=en" target = "_blank"><i class = "fab fa-instagram"></i></a>
</div>
<div class = "facebook">
<a href = "https://www.facebook.com/profile.php?id=100004242016207" target = "_blank"><i class = "fab fa-facebook-square"></i></a>
</div>
<div class = "github">
<a href = "https://github.com/radhadpatel" target = "_blank"><i class = "fab fa-github"></i></a>
</div>
</body>
</html>