-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact.html
70 lines (61 loc) · 2.59 KB
/
react.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
<!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">
<title>React Page</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
<link rel="stylesheet" href="./other/mystyle.css">
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="./other/favicon.ico">
</head>
<body>
<div class="whole">
<div class="nav">
<div class="logoLink">
<a href="index.html">
<div class="logoimg">
</div>
</a>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="works.html">Portfolio</a>
<a href="react.html">React</a>
<a href="contact.html">Contact</a>
</div>
<button id="button" onClick='menu()' class='hamburger-icon'>
<i class="fas fa-bars fa-2x"></i>
</button>
<div id='menu' class="mobile-menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="works.html">Portfolio</a>
<a href="react.html">React</a>
<a href="contact.html">Contact</a>
</div>
</div>
<!-- REACT SEGMENT -->
<div id="intro-component">
</div>
<div id="form-component">
</div>
<div id="main-component">
</div>
<div class="footer">
<div class='footer-content'>
<i class="fab fa-facebook-f fa-2x"></i>
<a href="https://github.com/vd1992"><i class="fab fa-github fa-2x"></i></a>
<a href="https://ca.linkedin.com/in/vachan-dhillon-31166691"><i class="fab fa-linkedin fa-2x"></i></a>
</div>
</div>
</div>
</body>
<script src="other/scripts.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react.production.min.js" ></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.production.min.js" ></script>
<script type="text/babel" src="other/react-app.js"></script>
</html>