-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
91 lines (77 loc) · 2.67 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
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
<!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">
<!--Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<!--Font Awesome Icons-->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<title>HUGO PROFILE</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a href="#"><img src="Images/logo.png" alt="" /></a>
<h1>HUGO PROFILE</h1>
<button class="hamburger" id="hamburger">
<i class="fas fa-bars">
</i>
</button>
<nav>
<ul class="nav-links" id="nav-Ul">
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#">Posts</a></li>
</ul>
</nav>
</header>
<!-- MAIN SECTION -->
<section id="main-section">
<div class="avtar">
<img src="Images/avtar.jpg" alt="AVATAR" />
<h2>Rather Aadil</h2>
</div>
<div class="About" id="about">
<p class="para">Hi, I'm Rather Aadil, a passionate Front End web developer. I tend to make use of modern web technologies to build websites that looks great, feels fantastic, and functions correctly.</p>
<p class="para">This is just a example for about section. You can easily change with the help of cofig file.</p>
<div class="social">
<a class="btn" href="#">Resume</a>
<i class="fab fa-facebook-square "></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-twitter-square"></i>
<i class="fab fa-github"></i>
</div>
</div>
</section>
<!--SKILLS SECTION -->
<section id="skills">
<h1>Things I DO</h1>
<div class="skills-container">
<div class="python">
<i class="fab fa-python icon"></i>
<h2>Python</h2>
<p>I build something beautiful using Python</p>
</div>
<div class="robot">
<i class="fas fa-robot icon"></i>
<h2>Machine Learning</h2>
<p>I train robust models for various task</p>
</div>
<div class="html">
<i class="fab fa-html5 icon"></i>
<h2>HTML 5</h2>
<p>I love to build things for web</p>
</div>
</div>
</section>
<!--FOOTER-->
<footer id="footer-container">
<img src="Images/logo.png" alt="" />
<p>© 2021 All Rights Reserved</p>
</footer>
<script src="Index.js"></script>
</body>
</html>