-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (96 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tony Dattolo</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<!-- bootstrap css file -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- fontawesome icons -->
<link rel="stylesheet" href="/css/all.min.css">
<!-- custom css file -->
<link rel="stylesheet" href="/css/styles.css">
<!-- responsive css file -->
<link rel="stylesheet" href="/css/responsive.css">
<script src="/js/jquery-3.5.1.min.js"></script>
<script src="/js/main.js"></script>
<script>
$(document).on('click', 'ul li', function() {
$('li').removeClass('active');
$(this).addClass('active');
});
// $(document).ready(function() {
// $('.navbar-nav li').click(function() {
// $(this).siblings('li').removeClass('active');
// $(this).parent().addClass('active');
// });
// });
// $(function() {
// $('ul.navbar-nav li').on('click', function() {
// $(this).parent().find('li.nav-item.active').removeClass('active');
// $(this).addClass('active');
// })
// })
</script>
</head>
<body>
<!-- Header loader -->
<div id="headerLoad"></div>
<script>$("#headerLoad").load("/header.html #headerdata");</script>
<!-- Start Main Area -->
<main class="site-main">
<!-- ================ Start Banner Area ================ -->
<section class="site-banner">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 site-title">
<h4 class="title-text">I'm Tony</h>
<!-- <h1 class="title-text text-uppercase">go for tony</h1> -->
<h2 class="title-text text-uppercase">Software Engineer<br>UX Designer<br>Founder</h2>
<p class="quote">"just do it"<br>- shia lebouf</p>
<div class="site-buttons">
<div class="d-flex flex-row flex-wrap">
<button
onclick="window.location.href='mailto:anthonydattolo@gmail.com'"
type="button" class="btn button primary-button mr-4 text-uppercase">
EMAIL
</button>
<a href="https://www.github.com/tonydattolo" target="_blank">
<button
type="button" class="btn button primary-button mr-4 text-uppercase">
GITHUB
</button>
</a>
<a href="resume/Resume of Anthony Dattolo - Software Engineer.pdf" target="_blank">
<button
type="button" class="btn button primary-button mr-4 text-uppercase">
RESUME
</button>
</a>
<a href="resume/MBTI of Tony Dattolo.pdf" target="_blank">
<button
type="button" class="btn button primary-button mr-4 text-uppercase">
MBTI
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 banner-image">
<img src="img/tonyeus.jpg" alt="banner img" class="img-fluid">
</div>
</div>
</div>
</section>
<!-- ================ Start Banner Area ================ -->
</main>
<!-- main js -->
<script src="/js/main.js"></script>
<!-- jquery js file -->
<script src="/js/jquery-3.5.1.min.js"></script>
<!-- bootstrap js file -->
<script src="/js/bootstrap.min.js"></script>
</body>
</html>