-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (76 loc) · 3.78 KB
/
Copy pathindex.html
File metadata and controls
77 lines (76 loc) · 3.78 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
<!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>Personal Portfolio</title>
<script src="https://kit.fontawesome.com/202b83f423.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/style.css">
</head>
<body>
<nav id="nav-bar">
<ul>
<li class="right"><a href="#footer">Contact</a></li>
<li class="right"><a href="#all-projects">Work</a></li>
<li class="right"><a href="#welcome">Home</a></li>
</ul>
</nav>
<div id="welcome">
<div id="welcome-text">
<h2 id="name">My name is Dat.</h2>
<p id="favorite">I like to build things for the web</p>
</div>
</div>
<div id="all-projects">
<h2 id="project-itd">These are my projects</h2>
<div id="project-group">
<a href="#" class="projects">
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/tribute.jpg" alt="Tribute Page">
<p class="project-name">Tribute Page</p>
</a>
<a href="#" class="projects">
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/random-quote-machine.png" alt="Random Quote Machine">
<p class="project-name">Random Quote Machine</p>
</a>
<a href="#" class="projects">
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/wiki.png" alt="Wikipedia Viewer">
<p class="project-name">Wikipedia Viewer</p>
</a>
<a href="#" class="projects">
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/map.jpg" alt="Map Data Across The Globe">
<p class="project-name">Map Data Across The Globe</p>
</a>
<a href="#" class="projects">
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/tic-tac-toe.png" alt="Tic Tac Toe Game">
<p class="project-name">Tic Tac Toe Game</p>
</a>
<a href="#" class="projects">
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/calc.png" alt="JavaScript Calculator">
<p class="project-name">JavaScript Calculator</p>
</a>
</div>
</div>
<div id="work">
<h2 id="let-work">Let's work together</h2>
<a href="https://www.facebook.com/profile.php?id=100007977246513">
<div class="social-network"><i class="fab fa-facebook-square"></i> Facebook</div>
</a>
<a href="https://www.facebook.com/profile.php?id=100007977246513">
<div class="social-network"><i class="fab fa-github-square"></i> GitHub</div>
</a>
<a href="https://www.facebook.com/profile.php?id=100007977246513">
<div class="social-network"><i class="fab fa-twitter-square"></i> Twitter</div>
</a>
</div>
<div id="footer">
<div class="contact" id="email"><i class="fas fa-envelope"></i> Email: tandat198@gmail.com</div>
<div class="contact" id="phone"><i class="fas fa-phone-square-alt"></i> Phone: 0842693293</div>
</div>
<div id="button">
<a id="up" href="#welcome"><i class="fas fa-angle-up"></i></a>
</div>
<script src="js/main.js"></script>
</body>
</html>