-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutorial.html
77 lines (55 loc) · 2.84 KB
/
tutorial.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
<!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">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/icon-font.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="../img/logo.png">
<title>CoderCrush |Tutorial</title>
</head><body>
<nav class="header u-margin-bottom-big">
<div class="header__logo-box">
<img src="../img/logo.png" alt="logo" class="header__logo">
</div>
<ul class="header__nav">
<li class="header__nav-item"><a href="www.google.com" class="header__nav-link">home</a></li>
<li class="header__nav-item"><a href="#" class="header__nav-link">about</a></li>
<li class="header__nav-item"><a href="#" class="header__nav-link">login</a></li>
<li class="header__nav-item"><a href="#" class="header__nav-link">signup</a></li>
<li class="header__nav-item"><a href="#" class="header__nav-link">subscribe</a></li>
</ul>
<ul class="header__login">
<li class="header__nav-item"><a href="#" class="header__nav-link">login</a></li>
<li class="header__nav-item"><a href="#" class="header__nav-link">signup</a></li>
</ul>
</nav>
<main>
<section class="section-content">
<div class="row row--tut">
<div class="col-1-of-4">
<div class="submenu">
<div class="heading-secondary heading-secondary--small">BASIC OF C</div>
<div class="heading-tertiary">BASICS</div>
<ul>
<li><a href="#">history</a></li>
<li><a href="#">start our first code</a></li>
<li><a href="#">variables</a></li>
<li><a href="#">data types</a></li>
<li><a href="#">constants</a></li>
<li><a href="#">a detail conclusion</a></li>
</ul>
<p> this is full menu and here will be make partial of all the subjets so deliver all the conten properly</p>
</div>
</div>
<div class="col-2-of-4">
this is content or study material with code
</div>
</div>
</section>
</main>
</body>
</html>