-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (126 loc) · 5.25 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Home</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/utility.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,800&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Source+Code+Pro:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="brand-and-toggler">
<a href="index.html" class="navbar-brand"></a>
<button type="button" class="navbar-toggler" id="navbar-toggler">
<span>
<i class="fas fa-bars"></i>
</span>
</button>
</div>
<div class="navbar-collapse">
<ul class="navbar-nav">
<li class="nav-item nav-active">
<a href="index.html" class="nav-link">home</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">about</a>
</li>
<li class="nav-item">
<a href="resume.html" class="nav-link">resume</a>
</li>
<li class="nav-item">
<a href="skills.html" class="nav-link">skills</a>
</li>
<li class="nav-item">
<a href="projects.html" class="nav-link">projects</a>
</li>
<li class="nav-item">
<a href="blog.html" class="nav-link">blog</a>
</li>
</ul>
</div>
</span>
</button>
</div>
</div>
</nav>
<section class = "home container">
<div class = "row">
<div class = "row-left">
<h3>hello!</h3>
<h1>i'm <span>Anirudh Arkery</span></h1>
<h2>A CS Grad at SantaClara</h2>
<div class = "home-pg-btn">
<button type="button" class="btn"><a href="https://www.linkedin.com/in/anirudh-arkery/">Reach out to me!!</a></button>
<button type="button" class="btn"><a href="https://anirudharkery.github.io/page/projects.html">My works</a></button>
</div>
</div>
<div class = "row-right">
<div class = "img-border">
<div class = "img-container">
<img src = "assets/my-photo.jpg" alt = "my photo">
</div>
</div>
</div>
</div>
</section>
<footer class = "footer container">
<div class = "row">
<div class = "col">
<div class = "social-links">
<a href = "#"><i class = "fab fa-twitter"></i></a>
<a href = "#"><i class = "fab fa-facebook"></i></a>
<a href = "#"><i class = "fab fa-instagram"></i></a>
</div>
</div>
<div class = "col">
<h3 class = "footer-title">links</h3>
<div class = "footer-links">
<a href = "#" class = "text">
<i class = "fas fa-long-arrow-alt-right"></i>
home
</a>
<a href = "#" class = "text">
<i class = "fas fa-long-arrow-alt-right"></i>
about
</a>
<a href = "#" class = "text">
<i class = "fas fa-long-arrow-alt-right"></i>
services
</a>
</div>
</div>
<div class = "col">
<h3 class = "footer-title">have a question?</h3>
<div>
<span>
<i class = "fas fa-map-marker-alt"></i>
</span>
<span class = "text">SantaClara</span>
</div>
<div>
<span>
<i class = "fas fa-phone"></i>
</span>
<span class = "text">+1(408)4406069</span>
</div>
<div>
<span>
<i class = "fas fa-envelope"></i>
</span>
<span class = "text">aarkery@scu.edu</span>
</div>
</div>
</div>
<div class = "footer-text">
<p class = "text">Copyright © 2022 All rights reserved | @ArkeryAnirudh</p>
</div>
</footer>
<script src="js/script.js" async defer></script>
</body>
</html>