-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/11dc9db23e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<title>Angle Trace</title>
<link rel = "icon" href = 'images/logo-favicon.png' type = "image/x-icon">
</head>
<body>
<section class="hero">
<div class="container">
<div class="row">
<div class="col">
<div class="hero__wrapper">
<div class="hero__logo">
<img src="images/logo.svg" alt="" class="img-fluid">
</div>
<div class="hero__links">
<ul>
<li>
<i class="fal fa-map-marker-alt"></i>
<p>AngleTrace LLC <br>30 N Gould St <br>Sheridan WY 82801</p>
</li>
<li>
<i class="fal fa-envelope"></i>
<p>[email protected]</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="footer">
<div class="container">
<div class="row">
<div class="col">
<p>Copyright@2020 Angle Trace</p>
</div>
</div>
</div>
</section>
</body>
</html>