-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dennis Lichti - Card Bio</title>
<link rel="icon" href="images/favicon.png" />
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="text">
<div class="image" class="img-responsive"></div>
<div class="person-name">Dennis Lichti</div>
<p>This is my simple and quick bio card-styled<br>website template, easy & clean design!</p>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#about" data-toggle="tooltip" data-placement="top" title="Learn more about me">
About
</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#contact" data-toggle="tooltip" data-placement="top" title="Contact me direectly">
Contact
</button>
</div>
<div class="modal fade" id="about" tabindex="-1" role="dialog" aria-labelledby="about" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="about">About me</h5>
</div>
<div class="modal-body">
<p>
An aspiring polymath type of guy being who aspires to create great things and ever expand my abilities when I have the chance.<br>
I love to create new concepts, learn, teach many concepts to myself and others who need help. I have a full portfolio with more information click the link below (recommended).
</p>
<center><a href="https://dennislichti.review">View full website portfolio</a></center>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="contact" tabindex="-1" role="dialog" aria-labelledby="contact" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="contact">Ways to contact me</h5>
</div>
<div class="modal-body">
<ul>
<li><a href="https://www.instagram.com/thedennisl94/">Follow me on Instagram</a><br></li>
<li><a href="mailto:[email protected]">Send me an email</a></li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.11.3.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.js"></script>
</body>
</html>