-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (127 loc) · 4.67 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
140
<!DOCTYPE html>
<html>
<head>
<title>It's Me!</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="container-fluid">
<div id="home">
<div class="landing-text text-responsive">
<img src="img/me3.jpg" class="img-circle img-fluid" width="15%" alt="Me">
<h2>Looking for your own website? Look no further. I'm here to help.</h2>
<a href="#" class="btn btn-success btn-lg">Get to Know Me</a>
</div>
</div>
</div>
<div class="container-fluid ">
<div class="jumbotron jumbotron-fluid darktheme">
<div class="container-fluid">
<h1 class="display-4 text-center">What I do</h1>
<p class="lead text-center">By day I am an artist; by night I am a web developer.
When I'm not drawing, I'm either designing websites with Bootstrap or keeping myself up to date on the latest web technologies.</p>
</div>
</div>
</div>
<div class="container-fluid text-center knowledge">
<div class="row">
<div class="col-sm-4">
<h3>Languages I know</h3>
<!--<img src="img/cssLogo.svg" class="img-thumbnail" style="width: 18rem"alt="css logo">-->
<ul class="list-group list-group-flush">
<li class="list-group-item">HTML</li>
<li class="list-group-item">CSS</li>
<li class="list-group-item">Javascript</li>
</ul>
</div>
<div class="col-sm-4">
<h3>Languages I am familiar with</h3>
<ul class="list-group list-group-flush">
<li class="list-group-item">Java</li>
<li class="list-group-item">C#</li>
<li class="list-group-item">Typescript</li>
</ul>
</div>
<div class="col-sm-4">
<h3>Software I use</h3>
<ul class="list-group list-group-flush">
<li class="list-group-item">Atom</li>
<li class="list-group-item">Photoshop</li>
<li class="list-group-item">Mudbox</li>
</ul>
</div>
</div>
</div>
<div class="padding">
</div>
<!--Artwork Display Section-->
<div class="container-fluid text-center artwork">
<div class="row">
<div class="col-sm-3">
<div class="thumbnail">
<img src="/img/manFace.jpg" class=" img-fluid" alt="man">
</div>
</div>
<div class="col-sm-3">
<div class="thumbnail">
<img src="/img/dadPortrait.jpg" class="img-fluid"alt="dad">
</div>
</div>
<div class="col-sm-3">
<div class="thumbnail">
<img src="/img/orc2.jpeg" class="img-fluid" alt="orc">
</div>
</div>
<div class="col-sm-3">
<img src="" class="img-fluid"alt="man">
</div>
</div>
</div>
<!-- Projects Section-->
<div class="container-fluid ">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4 text-center">Projects</h1>
<hr class="my-4">
</div>
</div>
</div>
<div class="container-fluid">
<div class="container-fluid text-center">
<div class="card white" style="width: 25rem;">
<img class="card-img-top" src="/img/entoLink.png" style="width: 100%;"alt="ento logo">
<div class="card-body">
<h5 class="card-title">EntoLink</h5>
<p class="card-text">EntoLink connects businesses and researchers with people seeking jobs in the entomophagy industry.</p>
<a href="#" class="btn btn-default">Enter Site</a>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="container-fluid text-center">
<div class="card darktheme" style="width: 25rem;">
<img class="card-img-top" src="/img/entoLink.png" style="width: 100%;"alt="ento logo">
<div class="card-body">
<h5 class="card-title">EntoLink</h5>
<p class="card-text">EntoLink connects businesses and researchers with people seeking jobs in the entomophagy industry.</p>
<a href="#" class="btn btn-default">Enter Site</a>
</div>
</div>
</div>
</div>
<footer class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h3>Contact Me</h3>
<p class="lead" style="color: white;">Mobile: 615-719-1123</br>Email: [email protected]</br>GitHub:</p>
</div>
</div>
</footer>
</body>
</html>