-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (84 loc) · 3.72 KB
/
index.html
File metadata and controls
88 lines (84 loc) · 3.72 KB
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
<!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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link href='https://fonts.googleapis.com/css?family=Roboto Mono' rel='stylesheet'>
<link rel="stylesheet" href="./styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="/public/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/public/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/public/favicon-16x16.png">
<title>Brad Clarke SDE II</title>
</head>
<body>
<header>
<h1 class="logo">Brad Clarke | SDE II</h1>
<ul class="nav">
<li class="nav-link"><a href="#intro">Home</a></li>
<li class="nav-link"><a href="#about">About</a></li>
<li class="nav-link"><a href="#contact">Contact</a></li>
<li class="nav-link"><a href="https://github.com/bradclarke2"><i class="fab fa-github"></i></a></li>
</ul>
<div class="burger">
<i class="fas fa-bars"></i>
</div>
</header>
<div class="main-body" id="main-body">
<section class="intro" id="intro">
<div class="intro-block">
<div style="flex-grow: 9; display: flex; justify-content: center; align-items: center; width: 60%;">
<h1 style="color: white; font-size: 8.9vmin; ">Hi, i'm Brad. Mechanical engineer turned software
developer</h1>
</div>
<div class="next-section" style="flex-grow: 1;">
<a style="text-decoration: none" href="#about">
<h2 style="color: white; text-align: center;">
Click here to learn more about what i do.<br />
<i class="fas fa-chevron-down"></i>
</h2>
</a>
</div>
</div>
</section>
<section class="intro" id="about">
<div style="background-color: white" class="intro-block-left">
<p>Portfolio piece 1</p>
<p>Embed video of robotic table football</p>
<div class="image-card">
<a href="https://www.youtube.com/watch?v=sriWzyevXn0" target="_blank" rel="noopener noreferrer">
<img onclick="" src="./table_football.png" alt="robotic table football">
</a>
</div>
</div>
<div style="background-color: greenyellow" class="intro-block-right">
<p>Portfolio piece 2</p>
</div>
</section>
<section class="intro" id="contact">
<div style="background-color: blue" class="intro-block-left">
<p>About me</p>
<p>some bits about me</p>
</div>
<div style="background-color: whitesmoke" class="intro-block-right">
<p>Contact details</p>
<ul>
<li>Github</li>
<li>LinkedIn</li>
<li>Email-me</li>
</ul>
</div>
</section>
</div>
<!--<footer>-->
<!-- <ul class="nav">-->
<!-- <li class="nav-link"><a href="#">Home</a></li>-->
<!-- <li class="nav-link"><a href="#">About</a></li>-->
<!-- <li class="nav-link"><a href="#">Contact</a></li>-->
<!-- <li class="nav-link"><a href="#"><i class="fab fa-github"></i></a></li>-->
<!-- </ul>-->
<!--</footer>-->
<script src="main.ts"></script>
</body>
</html>