-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (107 loc) · 4.03 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 lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="theme-color" content="#"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Henritek: Official Website | Experts
in Web Designing and Development"/>
<meta name="keywords" content="Henzri, Web Disign, Software, Development" />
<meta name="author" content="Henritek" />
<title>Henritek | Home</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script defer src="defer-script.js"></script>
<!--<script defer src="main.js"></script>-->
</head>
<!-- website body -->
<body id="body">
<header id="header-home">
<!--static header section-->
<div class="header-static">
<h1><span><a class="highlight" href="index.html"> Henri<span id="tech">tek</span> </a></span><span id="hide"> Web Design </span></h1>
<p><a id="p2" href="index.html"> Touch of Creativity </a></p>
<!--background theme button-->
<button id="btn1" onclick="toggle()">Dark</button>
<!--menu dropdown segment -->
<i id="dropdown-segment" class="material-icons">segment</i>
<!--Navigation menu for header section-->
<div class="nav-menu">
<nav>
<ul>
<li class="active" id="active"><a href="index.html">Home</a></li>
<li><a href="#">About Me</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</div>
</div>
<section>
<div class="contain">
<h2>Affordable and Bespoke Web Design </h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu luctus ipsum, rhoncus semper magna. Nulla nec magna sit amet sem interdum condimentum.</p>
</div>
</section>
<div class="contact">
<button id="btn2" ><a href="https://wa.me/qr/YELU5JWXJMOPG1"> Contact Me </a>
<!--https://wa.me/qr/YELU5JWXJMOPG1-->
</button>
</div>
</header>
<!--Body section -->
<main>
<section id="boxes">
<div class="box" id="box1">
<img src="logo_html.png" alt="HTML5 logo">
<h3 class="html5">HTML5</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Fusce quis sapien odio. Aliquam erat volutpat.</p>
<code class="code"><a class="codec1" href="#"> Learn more... </a></code>
</div>
<div class="box" id="box2">
<!--<i id="menu-icon"><img src="./icons/close_FILL0_wght400_GRAD0_opsz48.svg" alt="menu icon"> </i>-->
<img src="logo_css.png" alt="CSS3 logo">
<h3>CSS3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Fusce quis sapien odio. Aliquam erat volutpat.</p>
<code class="code"><a id="codec2" href="#"> Learn more... </a></code>
</div>
<div class="box" id="box3">
<img src="logo_html.png" alt="HTML5 logo">
<h3 class="html5">HTML5</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Fusce quis sapien odio. Aliquam erat volutpat.</p>
<code class="code"><a class="codec1" href="#"> Learn more... </a></code>
</div>
<!--<div class="box">
<img src="./imgp/logo_css.png" alt="CSS3 logo">
<h3>CSS3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Fusce quis sapien odio. Aliquam erat volutpat.</p>
<code class="code">Learn more...</code>
</div>-->
</section>
</main>
<!--Footer section -->
<footer>
<p>©<span id="brand-name">Henri<span id="tek">tek</span> </span>
<span id="brand-subname"> Web Design | All Rights Reserved, 2022.</span></p>
<!-- Navigation menu for footer section -->
<nav>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#">About Me</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Blog</a></li>
</nav>
<!-- Back to Top button -->
<button class="btnScrollToTop" id="scroll">
<i class="material-icons">arrow_upward</i>
</button>
</footer>
</body>
</html>