-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpp.html
102 lines (98 loc) · 5.19 KB
/
cpp.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
<!doctype html>
<html lang="ja">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap , Avant UI and Google Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:500,600,700">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/avantui.css">
<style>
.box{
text-align:center;
}
</style>
<title>Shin's portfolio</title>
</head>
<body>
<!-- nav bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">
Shin
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarLight" aria-controls="navbarLight" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarLight">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://shin-kyoto.github.io/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://dimsis.dpri.kyoto-u.ac.jp/index.php/member/tomie/">Lab</a>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Languages<span class="sr-only">(current)</span>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="cpp">C++</a>
<a class="dropdown-item" href="cs">C#</a>
<a class="dropdown-item" href="rust">Rust</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Codes
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">RL(DQN)</a>
<a class="dropdown-item" href="#">SLAM</a>
<a class="dropdown-item" href="#">ROS</a>
</div>
</li>
<!--<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Services
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Design</a>
<a class="dropdown-item" href="#">Programming</a>
<a class="dropdown-item" href="#">Consulting</a>
<a class="dropdown-item" href="#">Hosting</a>
<a class="dropdown-item" href="#">Editing</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>-->
</ul>
</div>
</nav>
<!-- main content -->
<div class="container-fluid pl-5 pr-5 pb-5" style="margin-top: 50px">
<div class="card shadow-sm" style="border-color: rgba(0, 0, 0, 0.75); background-color: rgba(255, 255, 255, 0.7);">
<div class="card-body pt-0 text-justify text-dark">
<h4 class="mb-2">paiza.ioのテスト</h4>
<div class="divider"></div>
<p class='card-text'>
C++とC#,Rustをしっかりやらないとなあと思いつつできていなかったので,paiza.ioで勉強中です.
以下は,勉強中のコード公開のテストです.
</p>
<iframe src="https://paiza.io/projects/e/5FScQ_gwm0SpXy1k_MtX7g?theme=twilight" width="100%" height="500" scrolling="no" seamless="seamless"></iframe>
<p>C++でのクラスの記述,for文if文の練習に線形ソートを実装したもの.</p>
<iframe src="https://paiza.io/projects/e/ZLVfzvC_0QPXDHOLjbE4tQ?theme=twilight" width="100%" height="500" scrolling="no" seamless="seamless"></iframe>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Bootstrap JS, then Avant UI -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js" integrity="sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o" crossorigin="anonymous"></script>
<script src="assets/js/avantui.js"></script>
</body>
</html>