-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
128 lines (119 loc) · 4.87 KB
/
index.php
File metadata and controls
128 lines (119 loc) · 4.87 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
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
120
121
122
123
124
125
126
127
128
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Exercise for practice</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<style>
body {
font-family:"arial", verdana Helvetica, sans-serif;
}
.h-bg{
background: #D0D0D0;
height: 180px;
}
.header{
padding-top: 50px;
}
.header p {
text-align: center;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 6px;
color: #FFFAF0;
margin-top: 15px;
margin-bottom: 15px;
text-shadow: 7px -12px 4px rgba(18, 17, 17, 0.42);
font-size: 29px;
}
.main-bg {
background: #F5F5F5 ;
padding: 50px 0;
}
.main-wrp{
background: #f9f9f9;
box-shadow: 0 0 10px rgba(19, 18, 18, 0.3);
margin: 25px auto 0;
padding: 21px;
position: relative;
width: 95%;
}
.card {
margin: 10px;
}
.product-grids {
display: flex;
align-items: flex-start;
justify-content: space-between;
flex-wrap: wrap;
height: 100%;
}
.link {
display: block;
margin-top: 15px;
padding: 21px;
text-align: right;
}
</style>
</head>
<body>
<!-- нав -->
<div class="h-bg">
<div class="container">
<div class="header">
<p>Exercise for practice</p>
</div>
</div>
</div>
<div class="main-bg">
<div class="container">
<div class="main-wrp">
<div class="artists">
<div class="product-grids">
<!-- карточки -->
<div class="card" style="width: 18rem;">
<img src="https://picsum.photos/150?random=1" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Cyrillic to Latin</h5>
<p class="card-text">On old phones there were no Cyrillic characters, to write a message you had to write in Latin characters. This translator will help you quickly write a message in Latin. </p>
<a href="/transcriptor_ru/transcriptor.php" class="btn btn-primary">Go to project</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="https://picsum.photos/150?random=2" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Shadow generator</h5>
<p class="card-text">jQuery practice. Simple css shadow generator</p>
<a href="/shadow_generator/start.php" class="btn btn-primary">Go to project</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="https://picsum.photos/150?random=3" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Practice in OOP: 'Little game'</h5>
<p class="card-text">A small board game, each player takes turns and rolls a dice, moving a figure into cells</p>
<a href="/oop_board_game/oop_board_game.php" class="btn btn-primary">Go to project</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img src="https://picsum.photos/150?random=4" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Test Task №1</h5>
<p class="card-text">Small test task</p>
<a href="/test_task_1/start.php" class="btn btn-primary">Go to project</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container">
<p class="link"><span>© 2022 PHP Developer Karpunin P. All rights Reserved | <a href="https://github.com/KarpuninP/"> My github</a></span></p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
</body>
</html>