-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (100 loc) · 3.79 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>Portfolio website</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="hero">
<nav>
<h2 class="logo">My Port<span>folio</span></h2> <!--To differentiate with two colors-->
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Me</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Hirings</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="#" class="btn">Subscribe</a>
</nav>
<div class="content">
<h4>Hello, my name is</h4>
<h1>Gavin <span>Gladston</span></h1>
<h3>I'am a Front-End Web Developer.</h3>
<div class="newslatter">
<form>
<input type="email" name="email" id="mail" placeholder="Enter Your Email">
<input type="submit" name="submit" value="Go">
</form>
</div>
</div>
</div>
<section class="about">
<div class="main">
<img src="img/about.png">
<div class="about-text">
<h2>About Me</h2>
<h5>Developer <span>& Designer</span></h5>
<p>I am a front-end web developer. I'm currently doing an online inernship in OASIS INFOBYTE. Two important skills for webpage designing are creativity and clear vision. Front-end-designing is a decorative process which can be basically done using HTML & CSS. </p>
<button type="button">Let's Talk</button>
</div>
</div>
</section>
<div class="service">
<div class="title">
<h2>Services</h2>
</div>
<div class="box">
<div class="card">
<i class="fas fa-bars"></i>
<h5>Web Development</h5>
<div class="pra">
<p>Two important skills for webpage designing are creativity and clear vision. Front-end-designing is a decorative process which can be basically done using HTML & CSS.</p>
<p style="text-align: center;">
<a class="button" href="#">Read More</a>
</p>
</div>
</div>
<div class="card">
<i class="far fa-user"></i>
<h5>Responsive Design</h5>
<div class="pra">
<p>Creating a responsive website is the good quality for a good front-end-developer.</p>
<p style="text-align: center;">
<a class="button" href="#">Read More</a>
</p>
</div>
</div>
<div class="card">
<i class="far fa-bell"></i>
<h5>Front-End-Design</h5>
<div class="pra">
<p>Every website must be built with two primary aims: At first, it needs to work across all devices. Next, it needs to be very quick.</p>
<p style="text-align: center;">
<a class="button" href="#">Read More</a>
</p>
</div>
</div>
</div>
</div>
<div class="contact-me">
<p>Let Me Present You An Amazing Website.</p>
<a class="button-two" href="#">Hire Me</a>
</div>
<footer>
<p>Gavin Gladston A</p>
<p>For further more updates, please follow me on: </p>
<div class="social"> <!--importing social media icons from third party using i tag-->
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
<p class="end">CopyRight By Gavin Gladston</p>
</footer>
</body>
</html>