-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (94 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Casey Thompson | Developer</title>
</head>
<body>
<div class="wrapper">
<!-- Navigation -->
<nav class="main-nav">
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<!-- Top Container -->
<section id="about" class="top-container">
<header class="showcase">
<h1>I am Casey Thompson</h1>
<p>Welcome to my site. Most of my skills pertain to backend development.
Here I will showcase my abilities as a frontend designer and developer using HTML5, CSS3, and JS</p>
<a href="#" class="btn">Read More</a>
</header>
<div class="top-box top-box-a">
<h3>HTML5</h3>
<i class="fab fa-html5 fa-4x"></i>
<a href="" class="btn">Show More</a>
</div>
<div class="top-box top-box-b">
<h3>CSS</h3>
<i class="fab fa-css3-alt fa-4x"></i>
<a href="" class="btn">Show More</a>
</div>
</section>
<!-- Boxes Section -->
<section id="services" class="boxes">
<div class="box">
<i class="fab fa-angular fa-4x"></i>
<h3>Angular</h3>
</div>
<div class="box">
<i class="fab fa-react fa-4x"></i>
<h3>React</h3>
</div>
<div class="box">
<i class="fab fa-vuejs fa-4x"></i>
<h3>Vue</h3>
</div>
</section>
<!-- Info Section -->
<section class="info">
<img src="https://image.ibb.co/j4Qz8x/pic1.jpg" alt="">
<div>
<h2>Your Business On The Web</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae alias reiciendis deleniti possimus nemo non repellendus?
Quae atque vero modi quidem! Autem cupiditate fugit doloribus ad amet, asperiores provident commodi.</p>
<a href="#" class="btn">Learn More</a>
</div>
</section>
<!-- Portfolio -->
<section class="portfolio">
<img src="https://source.unsplash.com/random/200x200" alt="">
<img src="https://source.unsplash.com/random/201x200" alt="">
<img src="https://source.unsplash.com/random/202x200" alt="">
<img src="https://source.unsplash.com/random/203x200" alt="">
<img src="https://source.unsplash.com/random/204x200" alt="">
<img src="https://source.unsplash.com/random/205x200" alt="">
<img src="https://source.unsplash.com/random/206x200" alt="">
<img src="https://source.unsplash.com/random/207x200" alt="">
<img src="https://source.unsplash.com/random/208x200" alt="">
</section>
<section id=contact class="contact">
<div>
<i class="fab fa-linkedin-in btn"></i>
<i class="fab fa-github btn"></i>
<i class="fab fa-facebook btn"></i>
</div>
</section>
<!-- Footer -->
<footer>
<p>Copyright © Casey Thompson; 2018</p>
</footer>
</div>
<!-- Wrapper Ends -->
</body>
</html>