-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.html
99 lines (96 loc) · 3.26 KB
/
build.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
<!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.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="HandheldFriendly" content="true" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap"
rel="stylesheet"
/>
<!-- CSS Stylesheets -->
<link rel="stylesheet" href="css/build.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/footer.css" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<!-- <script
defer
src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"
></script> -->
<!-- Favi icon -->
<link rel="shortcut icon" type="image/png" href="/logo2.png" />
<title>ICS 20033</title>
</head>
<body>
<header id="header">
<img
class="logo"
src="logos/logo2.png"
alt="logo"
onclick="location.href='index.html'"
/>
<ul class="nav-bar">
<li><a class="nav-link" href="#main">Build</a></li>
<li><a class="nav-link" href="#cartBtn">Cart</a></li>
<li><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</header>
<section id="main">
<form class="form">
<section class="category">
<h2 class="category-title">Choose your CPU</h2>
</section>
<section class="category">
<h2 class="category-title">Choose your Motherboard</h2>
</section>
<section class="category">
<h2 class="category-title">Choose your Case</h2>
</section>
<section class="category">
<h2 class="category-title">Choose your Power Supply</h2>
</section>
<section class="category">
<h2 class="category-title">Choose your Ram</h2>
</section>
<section class="category">
<h2 class="category-title">Choose your Hard Drive</h2>
</section>
<section class="category">
<h2 class="category-title">Choose your GPU</h2>
</section>
<div class="btn-container">
<button id="cartBtn" type="submit" class="cartBtn">Go To Cart</button>
</div>
</form>
</section>
<section id="contact">
<footer>
<div class="icon-container">
<a
href="https://www.linkedin.com/in/leonard-pepa-bb74371b9/"
target="_blank"
><i class="icon fab fa-linkedin fa-2x"></i
></a>
<a href="/~https://github.com/Leonardpepa" target="_blank">
<i class="icon fab fa-github fa-2x"></i>
</a>
<a href="https://twitter.com/LeonarntP" target="_blank">
<i class="icon fab fa-twitter-square fa-2x"></i>
</a>
</div>
<p>© Copyright 2021 ICS20033</p>
</footer>
</section>
<script src="build.js"></script>
</body>
</html>